/* ═══════════════════════════════════════════════════════
   HOME PAGE — MedClass
   Palette: #1a3d4e #152a34 #2d6078 #2d6078 #3a7a92
            #2d6078 #fb9825 #f5f7f6 #fff
   Font: Montserrat (body), Georgia (title em)
   ═══════════════════════════════════════════════════════ */

:root{
    --mh-dark: #0d0d0d;
    --mh-dark-2: #1a1a1a;
    --mh-dark-3: #111111;
    --mh-dark-4: #161616;
    --mh-gold: #c89b5e;
    --mh-gold-light: #d4a76a;
    --mh-gold-dark: #b8863e;
    --mh-copper: #9e7844;
    --mh-cream: #f5f0eb;
    --mh-cream-light: #faf7f3;
    --mh-text: #e8e0d8;
}

/* ── RESETS ── */
.hm-hero, .hm-chat, .hm-stats, .hm-plans, .hm-hack,
.hm-stories, .hm-success, .hm-cta { box-sizing: border-box; }
.hm-hero *, .hm-chat *, .hm-stats *, .hm-plans *, .hm-hack *,
.hm-stories *, .hm-success *, .hm-cta * { box-sizing: border-box; }

/* ══════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════ */
.hm-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hm-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hm-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hm-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(21,42,52,0.72) 0%, rgba(21,42,52,0.88) 100%);
}
.hm-hero-inner {
    position: relative; z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px 56px;
    text-align: center;
}
.hm-hero-content { color: #fff; }

.hm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(95,184,176,0.18);
    border: 1px solid rgba(95,184,176,0.35);
    color: #fb9825;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}
.hm-hero-badge svg { flex-shrink: 0; }

.hm-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 16px;
}
.hm-hero-title em {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 700;
    color: #2d6078;
}
.hm-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin: 0 0 24px;
    max-width: 540px;
    margin-left: auto; margin-right: auto;
}
.hm-hero-subtitle strong { color: #fff; }

.hm-hero-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.hm-hero-micro-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.hm-hero-micro-sep { opacity: 0.4; }


/* ══════════════════════════════════════════════
   2. EDU — CONVERSAȚIE INTERACTIVĂ
   ══════════════════════════════════════════════ */
.hm-edu {
    padding: 10px 24px 100px;
    background: #f5f7f6;
    overflow: hidden;
}
.hm-edu-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

/* ── Mascot column — floating on the left ── */
.hm-edu-mascot-col {
    position: absolute;
    left: -300px;
    top: 40px;
    width: 350px;
    z-index: 2;
    pointer-events: auto;
}
.hm-edu-mascot {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
}
.hm-edu-mascot:hover {
    transform: scale(1.06) rotate(-3deg);
}
.hm-edu-mascot.hm-edu-bounce {
    animation: eduBounce 0.6s ease;
}
@keyframes eduBounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-18px) rotate(-5deg); }
    50%  { transform: translateY(-10px) rotate(2deg); }
    70%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

/* ── Central conversation ── */
.hm-edu-conv {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    padding: 40px 36px 32px;
    position: relative;
    z-index: 1;
}

/* Header */
.hm-edu-header {
    text-align: center;
    margin-bottom: 28px;
}
.hm-edu-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #3a7a92;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.hm-edu-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a3d4e;
    margin: 0 0 8px;
    line-height: 1.2;
}
.hm-edu-heading em {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #e8651a;
}
.hm-edu-sub {
    font-size: 14px;
    color: #6b8a95;
    margin: 0;
    line-height: 1.5;
}

/* ── Progress dots ── */
.hm-edu-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}
.hm-edu-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #e8eef0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}
.hm-edu-dot span {
    font-size: 13px;
    font-weight: 700;
    color: #8aa5b0;
    transition: color 0.3s;
}
.hm-edu-dot-active {
    background: linear-gradient(135deg, #e8651a, #fb9825);
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(232,101,26,0.3);
}
.hm-edu-dot-active span { color: #fff; }
.hm-edu-dot-done {
    background: linear-gradient(135deg, #2d6078, #4da89f);
}
.hm-edu-dot-done span { color: #fff; }
.hm-edu-dot-line {
    width: 48px; height: 3px;
    background: #e8eef0;
    border-radius: 2px;
    transition: background 0.4s;
}
.hm-edu-dot-line.hm-edu-line-done {
    background: linear-gradient(90deg, #2d6078, #4da89f);
}

/* ── Messages ── */
.hm-edu-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    min-height: 80px;
    max-height: 360px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 4px;
}
.hm-edu-messages::-webkit-scrollbar { width: 4px; }
.hm-edu-messages::-webkit-scrollbar-track { background: transparent; }
.hm-edu-messages::-webkit-scrollbar-thumb { background: #d0dce0; border-radius: 4px; }

.hm-edu-msg {
    display: flex;
    gap: 12px;
    animation: eduMsgIn 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes eduMsgIn {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hm-edu-msg-bot { align-items: flex-start; }
.hm-edu-msg-user {
    flex-direction: row-reverse;
}

.hm-edu-msg-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-edu-msg-avatar img {
    width: 32px; height: 32px;
    object-fit: contain;
}
.hm-edu-msg-user .hm-edu-msg-avatar {
    background: linear-gradient(135deg, #2d6078, #3a7a92);
}
.hm-edu-msg-user .hm-edu-msg-avatar img { display: none; }
.hm-edu-msg-user .hm-edu-msg-avatar::after {
    content: '👤';
    font-size: 18px;
}

.hm-edu-msg-content {
    max-width: 80%;
}
.hm-edu-msg-name {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8aa5b0;
    margin-bottom: 4px;
}
.hm-edu-msg-user .hm-edu-msg-name {
    text-align: right;
    color: #3a7a92;
}

.hm-edu-msg-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.55;
}
.hm-edu-msg-bot .hm-edu-msg-bubble {
    background: #f0f4f6;
    color: #1a3d4e;
    border-bottom-left-radius: 6px;
}
.hm-edu-msg-user .hm-edu-msg-bubble {
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #fff;
    border-bottom-right-radius: 6px;
}

/* Typing indicator */
.hm-edu-msg-typing .hm-edu-msg-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 22px;
    min-height: 46px;
}
.hm-edu-typing-dot {
    width: 7px; height: 7px;
    background: #90a5b0;
    border-radius: 50%;
    animation: eduTypeDot 1.4s infinite;
}
.hm-edu-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.hm-edu-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes eduTypeDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.2); }
}

/* Result card inside message */
.hm-edu-result-card {
    background: linear-gradient(135deg, #fff8f3, #fff);
    border: 2px solid #e8651a;
    border-radius: 16px;
    padding: 20px;
    margin-top: 8px;
}
.hm-edu-result-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #e8651a;
    margin: 0 0 6px;
}
.hm-edu-result-card p {
    font-size: 13px;
    color: #4a6670;
    margin: 0 0 14px;
    line-height: 1.5;
}
.hm-edu-result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e8651a, #fb9825);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.hm-edu-result-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,101,26,0.35);
}

/* ── Action buttons ── */
.hm-edu-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    min-height: 48px;
}
.hm-edu-btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hm-edu-btn:hover {
    transform: translateY(-2px) scale(1.03);
}
.hm-edu-btn-primary {
    background: linear-gradient(135deg, #e8651a, #fb9825);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,101,26,0.2);
}
.hm-edu-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(232,101,26,0.35);
}
.hm-edu-btn-ghost {
    background: #fff;
    color: #5a7a88;
    border: 1.5px solid #d0dce0;
}
.hm-edu-btn-ghost:hover {
    border-color: #e8651a;
    color: #e8651a;
    background: #fff8f3;
}
.hm-edu-btn-option {
    background: #fff;
    color: #1a3d4e;
    border: 1.5px solid #d0dce0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hm-edu-btn-option:hover {
    border-color: #e8651a;
    background: #fff8f3;
    color: #e8651a;
    box-shadow: 0 6px 20px rgba(232,101,26,0.12);
}
.hm-edu-btn-urgent {
    background: linear-gradient(135deg, #122833, #183749);
    color: #fff;
    box-shadow: 0 4px 16px rgba(24,55,73,0.2);
}
.hm-edu-btn-emoji {
    font-size: 18px;
    line-height: 1;
}

/* ── Restart button ── */
.hm-edu-restart {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    padding: 8px 18px;
    background: transparent;
    border: none;
    color: #8aa5b0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.2s;
}
.hm-edu-restart:hover {
    color: #e8651a;
    background: #fff8f3;
}
.hm-edu-restart svg { transition: transform 0.3s; }
.hm-edu-restart:hover svg { transform: rotate(-180deg); }

/* ── Responsive: hide mascot on smaller screens ── */
@media (max-width: 1100px) {
    .hm-edu-mascot-col {
        position: static;
        width: 250px;
        margin: 0 auto 20px;
        margin-top: -50px;
        margin-bottom: -43px;
    }
}




/* ══════════════════════════════════════════════
   3. STATS
   ══════════════════════════════════════════════ */
.hm-stats {
    padding: 0 0 0px 0;
    background: #f5f7f6;
    margin-top: -90px;
}
.hm-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.hm-stat-item {
    text-align: center;
    padding: 32px 20px;
    background: #f5f7f6;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hm-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.hm-stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: rgba(58,122,146,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #1a3d4e;
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.hm-stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b8a95;
    letter-spacing: 0.3px;
}


/* ══════════════════════════════════════════════
   4. 3 PLANS
   ══════════════════════════════════════════════ */
.hm-plans {
    padding: 100px 24px;
    background: #f5f7f6;
}
.hm-plans-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.hm-plans-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1a3d4e;
    margin: 0 0 12px;
}
.hm-plans-title em {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #fb9825;
}
.hm-plans-subtitle {
    text-align: center;
    font-size: 16px;
    color: #5a7a88;
    max-width: 600px;
    margin: 0 auto 52px;
    line-height: 1.6;
}

.hm-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.hm-plan-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border-left: 4px solid transparent;
}
.hm-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Color variations */
.hm-plan-red  { border-left-color: #183749; }
.hm-plan-green { border-left-color: #e6b235; }
.hm-plan-blue  { border-left-color: #2d6078; }

/* Image */
.hm-plan-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.hm-plan-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hm-plan-img-tag {
    position: absolute;
    bottom: 12px; left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

/* Body */
.hm-plan-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hm-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a3d4e;
    margin: 0 0 8px;
}
.hm-plan-desc {
    font-size: 14px;
    color: #5a7a88;
    line-height: 1.6;
    margin: 0 0 14px;
}
.hm-plan-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4a6670;
    margin-bottom: 18px;
}

/* Features */
.hm-plan-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.hm-plan-features li {
    font-size: 13px;
    color: #3a5a68;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.hm-plan-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(95,184,176,0.2);
    border: 2px solid #2d6078;
}

/* Limited badge */
.hm-plan-limited {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #183749;
    padding: 8px 14px;
    background: rgba(192,57,43,0.06);
    border-radius: 8px;
    margin-bottom: 16px;
}
.hm-plan-limited-green { color: #e6b235; background: rgba(230,178,53,0.06); }
.hm-plan-limited-blue  { color: #2d6078; background: rgba(6,104,133,0.06); }

/* CTA button */
.hm-plan-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    margin-bottom: 20px;
}
.hm-plan-btn-red {
    background: linear-gradient(135deg, #183749, #1a3d4e);
    color: #fff;
}
.hm-plan-btn-red:hover {
    background: linear-gradient(135deg, #122833, #183749);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24,55,73,0.3);
}
.hm-plan-btn-green {
    background: linear-gradient(135deg, #e6b235, #e6b235);
    color: #fff;
}
.hm-plan-btn-green:hover {
    background: linear-gradient(135deg, #d4a017, #e6b235);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.3);
}
.hm-plan-btn-blue {
    background: linear-gradient(135deg, #3a7a92, #3a7a92);
    color: #fff;
}
.hm-plan-btn-blue:hover {
    background: linear-gradient(135deg, #055a72, #2d6078);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6,104,133,0.3);
}

/* Testimonial inside card */
.hm-plan-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f5f7f6;
    border-radius: 12px;
    margin-top: auto;
}
.hm-plan-tst-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.hm-avatar-red   { background: linear-gradient(135deg, #183749, #1a3d4e); }
.hm-avatar-green { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.hm-avatar-blue  { background: linear-gradient(135deg, #2d6078, #3a7a92); }

.hm-plan-tst-text {
    flex: 1;
    min-width: 0;
}
.hm-plan-tst-text p {
    font-size: 12px;
    color: #4a6670;
    line-height: 1.5;
    margin: 0 0 4px;
    font-style: italic;
}
.hm-plan-tst-text strong {
    font-size: 13px;
    color: #1a3d4e;
    display: block;
}
.hm-plan-tst-text span {
    font-size: 11px;
    color: #8aa5b0;
}
.hm-plan-tst-score {
    font-size: 18px;
    font-weight: 800;
    color: #1a3d4e;
    background: #e0ece9;
    padding: 6px 10px;
    border-radius: 8px;
    flex-shrink: 0;
    line-height: 1;
}


/* ══════════════════════════════════════════════
   5. MEDHACK
   ══════════════════════════════════════════════ */
.hm-hack {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0d0d0d 0%, #0d0d0d 100%);
    color: #fff;
    overflow: hidden;
}
.hm-hack-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hm-hack-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mh-gold);
    background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.hm-hack-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
}
.hm-hack-title strong { 
    color: var(--mh-gold);
    background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hm-hack-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin: 0 0 36px;
}

/* Pricing */
.hm-hack-prices {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.hm-hack-price-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 22px;
    flex: 1;
    position: relative;
    transition: border-color 0.3s;
}
.hm-hack-price-box:hover {
    border-color: rgba(95,184,176,0.35);
}
.hm-hack-price-featured {
    border-color: #c89b5e;
    background: rgba(95,184,176,0.06);
}
.hm-hack-price-tag {
    position: absolute;
    top: -10px; right: 14px;
    background: #fb9825;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}
.hm-hack-price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.hm-hack-price-val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.hm-hack-price-val s {
    font-size: 15px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}
.hm-hack-price-val small {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}
.hm-hack-price-sub {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.hm-hack-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    /* background: linear-gradient(135deg, #2d6078, #4da89f); */
    background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold-dark));
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.hm-hack-btn:hover {
    /* background: linear-gradient(135deg, #4da89f, #3d9a91); */
    background: transparent;
    color: var(--mh-gold);
    border: 1.5px solid var(--mh-gold);
}

/* Right side */
.hm-hack-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hm-hack-phone {
    width: 260px;
    margin-bottom: 32px;
}
.hm-hack-phone img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hm-hack-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}
.hm-hack-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}
.hm-hack-feat:hover {
    background: rgba(255,255,255,0.07);
}
.hm-hack-feat svg { flex-shrink: 0; margin-top: 2px; }
.hm-hack-feat strong {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
}
.hm-hack-feat span {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}


/* ══════════════════════════════════════════════
   6. STORIES / TESTIMONIALS
   ══════════════════════════════════════════════ */
.hm-stories {
    padding: 100px 24px;
    background: #fff;
}
.hm-stories-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hm-stories-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1a3d4e;
    margin: 0 0 8px;
}
.hm-stories-title em {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #fb9825;
}
.hm-stories-subtitle {
    text-align: center;
    font-size: 15px;
    color: #6b8a95;
    margin: 0 0 52px;
}
.hm-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hm-story-card {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hm-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.hm-story-stars {
    font-size: 16px;
    color: #fb9825;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.hm-story-text {
    font-size: 14px;
    line-height: 1.7;
    color: #3a5a68;
    margin: 0 0 20px;
    font-style: italic;
}
.hm-story-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hm-story-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.hm-story-meta {
    flex: 1;
    min-width: 0;
}
.hm-story-meta strong {
    display: block;
    font-size: 14px;
    color: #1a3d4e;
}
.hm-story-meta span {
    font-size: 12px;
    color: #8aa5b0;
}
.hm-story-score-wrap {
    text-align: center;
    flex-shrink: 0;
}
.hm-story-score {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1a3d4e;
    line-height: 1;
}
.hm-story-months {
    font-size: 11px;
    color: #8aa5b0;
}
.hm-stories-cta {
    text-align: center;
    margin-top: 40px;
}
.hm-stories-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #2d6078;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.hm-stories-btn:hover {
    background: #1a3d4e;
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════════
   7. SUCCESS
   ══════════════════════════════════════════════ */
.hm-success {
    padding: 100px 24px;
    background: #f5f7f6;
}
.hm-success-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hm-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #1a3d4e;
    line-height: 1.2;
    margin: 0 0 16px;
}
.hm-success-title em {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #fb9825;
}
.hm-success-desc {
    font-size: 16px;
    color: #5a7a88;
    line-height: 1.65;
    margin: 0 0 32px;
}

.hm-success-umf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.hm-success-umf {
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.hm-success-umf:hover {
    transform: translateY(-2px);
}
.hm-success-umf strong {
    display: block;
    font-size: 14px;
    color: #1a3d4e;
    margin-bottom: 4px;
}
.hm-success-umf span {
    font-size: 22px;
    font-weight: 800;
    color: #2d6078;
}

.hm-success-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2d6078;
    text-decoration: none;
    transition: color 0.2s;
}
.hm-success-link:hover { color: #3a7a92; }

/* Image with floating badge */
.hm-success-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
.hm-success-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 18px;
}
.hm-success-float-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.hm-success-float-badge svg { flex-shrink: 0; }
.hm-success-float-badge strong {
    font-size: 22px;
    font-weight: 800;
    color: #1a3d4e;
    display: block;
    line-height: 1;
}
.hm-success-float-badge span {
    font-size: 12px;
    color: #6b8a95;
}


/* ══════════════════════════════════════════════
   8. CTA
   ══════════════════════════════════════════════ */
.hm-cta {
    padding: 100px 24px;
    background: linear-gradient(180deg, #1a3d4e 0%, #152a34 100%);
    text-align: center;
    color: #fff;
}
.hm-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}
.hm-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fafafa;
    padding: 8px 18px;
    background: rgba(95,184,176,0.12);
    border: 1px solid rgba(95,184,176,0.25);
    border-radius: 100px;
    margin-bottom: 28px;
}
.hm-cta-badge svg { flex-shrink: 0; }

.hm-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
}
.hm-cta-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0 0 36px;
}
.hm-cta-desc br { display: block; }

.hm-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hm-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    /* background: linear-gradient(135deg, #27ae60, #2ecc71); */
    background: linear-gradient(135deg, #e8651a, #fb9825);
    color: #fff;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.hm-cta-btn-primary:hover {
    /* background: linear-gradient(135deg, #219a52, #27ae60); */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 24px rgba(39,174,96,0.35); */
    background: transparent;
    color: #fb9825;
    border: 1.5px solid #fb9825;
}
.hm-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.hm-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.hm-cta-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hm-cta-micro span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    /* color: rgba(255,255,255,0.5); */
}
.hm-cta-micro svg { opacity: 0.5; }


/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════ */
.hm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.hm-reveal.hm-visible {
    opacity: 1;
    transform: translateY(0);
    /* z-index: 100;
    background: #fff;
    border: 1px solid;
    box-shadow: 0 4px 20px rgba(45, 96, 120, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); */
}


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hm-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .hm-plan-red   { order: 1; } /* 2026 first */
    .hm-plan-blue  { order: 2; } /* 2027 second */
    .hm-plan-green { order: 3; } /* 2028 third */
    .hm-hack-inner { grid-template-columns: 1fr; text-align: center; }
    .hm-hack-left  { order: 1; }
    .hm-hack-right { order: 2; }
    .hm-hack-prices { justify-content: center; }
    .hm-hack-features-grid { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hm-hero { min-height: 420px; }
    .hm-hero-title { font-size: 32px; }
    .hm-hero-inner { padding: 70px 20px 48px; }

    .hm-edu-heading { font-size: 26px; }
    .hm-edu-conv { padding: 28px 20px 24px; }
    .hm-edu-msg-content { max-width: 88%; }

    .hm-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hm-stat-number { font-size: 32px; }

    .hm-plans-title { font-size: 30px; }

    .hm-hack-title { font-size: 28px; }
    .hm-hack-prices { flex-direction: column; }
    .hm-hack-phone { width: 200px; }

    .hm-stories-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .hm-stories-title { font-size: 30px; }

    .hm-success-inner { grid-template-columns: 1fr; }
    .hm-success-title { font-size: 30px; }
    .hm-success-right { order: -1; }

    .hm-cta-title { font-size: 30px; }
    .hm-cta-buttons { flex-direction: column; }
    .hm-cta-btn-primary, .hm-cta-btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hm-hero-title { font-size: 26px; }
    .hm-hero-subtitle { font-size: 14px; }
    .hm-hero-micro { flex-direction: column; gap: 6px; }
    .hm-hero-micro-sep { display: none; }

    .hm-edu { padding: 50px 16px; }
    .hm-edu-heading { font-size: 22px; }
    .hm-edu-conv { padding: 24px 16px 20px; }
    .hm-edu-actions { flex-direction: column; }
    .hm-edu-btn { width: 100%; justify-content: center; }
    .hm-edu-dot-line { width: 32px; }

    .hm-stats { padding: 50px 16px; }
    .hm-stat-number { font-size: 28px; }
    .hm-stat-item { padding: 20px 14px; }

    .hm-plans { padding: 60px 16px; }
    .hm-plans-title { font-size: 24px; }
    .hm-plan-img { height: 140px; }

    .hm-hack { padding: 60px 16px; }
    .hm-hack-title { font-size: 24px; }
    .hm-hack-features-grid { grid-template-columns: 1fr; }

    .hm-stories { padding: 60px 16px; }
    .hm-stories-title { font-size: 24px; }

    .hm-success { padding: 60px 16px; }
    .hm-success-title { font-size: 24px; }
    .hm-success-umf-grid { grid-template-columns: 1fr; }

    .hm-cta { padding: 60px 16px; }
    .hm-cta-title { font-size: 24px; }
    .hm-cta-micro { flex-direction: column; gap: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hm-reveal { transition: none; }
    .hm-plan-card, .hm-stat-item, .hm-story-card,
    .hm-success-umf { transition: none; }
    .hm-edu-typing-dot, .hm-edu-mascot { animation: none; }
}
@media (max-width: 480px) {
    .hm-edu-mascot-col{
        margin-top: -105px !important;
    }
}
