/* ================================================================
   HOME TUITION NEPAL LANDING — landing.css
   Brand: #163496 (primary), #eff3fa (light bg), #d5e0f2 (border)
   ================================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
.htnlp-section *,
.htnlp-section *::before,
.htnlp-section *::after { box-sizing: border-box; }

.htnlp-section {
    padding: 72px 0;
    width: 100%;
    overflow: hidden;
}

.htnlp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.htnlp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.htnlp-section-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #163496;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 14px;
}

.htnlp-subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #163496;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.htnlp-section-subtext {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.75;
}

.htnlp-body-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.8;
    margin: 0 0 16px;
}

/* ── CHIPS ────────────────────────────────────────────────────── */
.htnlp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #163496;
    background: #eff3fa;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #d5e0f2;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    cursor: default;
}
.htnlp-chip:hover {
    background: #163496;
    color: #fff;
    border-color: #163496;
    transform: translateY(-1px);
}
a.htnlp-chip, a.htnlp-city-chip { cursor: pointer; }

.htnlp-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Hero light variant */
.htnlp-chip--light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.htnlp-chip--light:hover {
    background: #fff;
    color: #163496;
    border-color: #fff;
}

/* ── CARDS ────────────────────────────────────────────────────── */
.htnlp-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05), 0 1px 3px rgba(15,23,42,0.04);
    padding: 32px 28px;
    transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.35s cubic-bezier(0.165,0.84,0.44,1),
                border-color 0.3s;
}
.htnlp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(22,52,150,0.1), 0 4px 12px rgba(15,23,42,0.06);
    border-color: rgba(22,52,150,0.25);
}

/* ── SECTION: HERO ────────────────────────────────────────────── */
.htnlp-hero {
    background: linear-gradient(140deg, #0f2470 0%, #163496 45%, #1e4db7 100%);
    padding: 90px 24px 80px;
    position: relative;
    overflow: hidden;
}
.htnlp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.htnlp-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.htnlp-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.htnlp-hero-heading {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0 auto 20px;
}
.htnlp-hero-tagline {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.htnlp-hero-chips {
    justify-content: center;
    gap: 10px;
}

/* ── STAT CARD ENTRANCE ANIMATION ────────────────────────────── */
/* Applied by JS via IntersectionObserver — keeps hover transitions intact */
.htnlp-animate-entrance {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease,
                transform 0.5s ease,
                background 0.3s cubic-bezier(0.165,0.84,0.44,1),
                border-color 0.3s ease,
                box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1);
}

/* ── SECTION: STATS BAR ───────────────────────────────────────── */
.htnlp-stats {
    background: #fff;
    padding: 48px 0 56px;
    border-bottom: 1px solid #f0f4ff;
}
.htnlp-stats-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
}
.htnlp-stats-track::-webkit-scrollbar { display: none; }

.htnlp-stat-card {
    flex: 0 0 auto;
    min-width: 155px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, #f8faff, #eff3fa);
    border-radius: 18px;
    border: 1px solid #d5e0f2;
    padding: 24px 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1),
                background 0.3s ease,
                border-color 0.3s ease;
}
.htnlp-stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(145deg, #fff3ef, #ffe0d6);
    border-color: #ff8a65;
    box-shadow: 0 12px 32px rgba(191,54,12,0.18), 0 4px 10px rgba(255,87,34,0.12);
}
.htnlp-stat-icon {
    font-size: 1.7rem;
    color: #163496;
    margin-bottom: 2px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.htnlp-stat-card:hover .htnlp-stat-icon {
    color: #ff5722;
    transform: scale(1.2) rotate(-8deg);
}
.htnlp-stat-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #163496;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}
.htnlp-stat-card:hover .htnlp-stat-value {
    color: #ff5722;
}
.htnlp-stat-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}
.htnlp-stat-card:hover .htnlp-stat-label {
    color: #bf360c;
}

/* ── SECTION: ABOUT ───────────────────────────────────────────── */
.htnlp-about {
    background: #fff;
    padding: 80px 0;
}
.htnlp-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}
.htnlp-about-text .htnlp-section-heading {
    text-align: left;
    margin-bottom: 16px;
}
.htnlp-credential-card {
    background: linear-gradient(160deg, #f8fbff 0%, #eff3fa 100%);
    border-radius: 24px;
    border: 1px solid #d5e0f2;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(22,52,150,0.07);
    position: sticky;
    top: 24px;
}
.htnlp-credential-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: #163496;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d5e0f2;
}
.htnlp-credential-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.htnlp-credential-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(22,52,150,0.07);
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
    line-height: 1.4;
}
.htnlp-credential-item:last-child { border-bottom: none; }
.htnlp-credential-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    color: #163496;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(22,52,150,0.1);
}
.htnlp-about-paths {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #f0f4ff;
}
.htnlp-path-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 24px;
}
.htnlp-path-item {
    background: #fafbff;
    border: 1px solid #e8eeff;
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}
.htnlp-path-item:hover {
    box-shadow: 0 8px 20px rgba(22,52,150,0.08);
    transform: translateY(-3px);
}
.htnlp-path-item .htnlp-chip {
    font-size: 0.8rem;
    padding: 6px 14px;
}
.htnlp-path-desc {
    font-size: 0.83rem;
    color: #64748b;
    margin: 10px 0 0;
    line-height: 1.55;
}

/* ── SECTION: WHY CHOOSE US ───────────────────────────────────── */
.htnlp-why-choose {
    background: #fafbff;
    padding: 80px 0;
}
.htnlp-why-choose .htnlp-section-subtext {
    color: #ff5722;
    font-weight: 600;
}
.htnlp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.htnlp-why-card {
    padding: 36px 32px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.htnlp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #163496, #1e4db7);
    opacity: 0;
    transition: opacity 0.3s;
}
.htnlp-why-card:hover::before { opacity: 1; }
.htnlp-why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff3ef, #ffe0d6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s, background 0.3s;
}
.htnlp-why-card:hover .htnlp-why-icon-wrap {
    transform: scale(1.08);
    background: linear-gradient(135deg, #ff5722, #bf360c);
}
.htnlp-why-icon {
    font-size: 1.5rem;
    color: #ff5722;
    transition: color 0.3s;
}
.htnlp-why-card:hover .htnlp-why-icon { color: #fff; }
.htnlp-why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff5722;
    margin: 0 0 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.htnlp-why-card:hover .htnlp-why-title {
    color: #bf360c;
}
.htnlp-why-desc {
    font-size: 0.93rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── SECTION: VERIFICATION ────────────────────────────────────── */
.htnlp-verification {
    background: #fff;
    padding: 80px 0;
}
.htnlp-steps-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 16px;
}
.htnlp-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.htnlp-step-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #163496, #1e4db7);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(22,52,150,0.3);
    margin-bottom: 0;
}
.htnlp-step-connector {
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    background: linear-gradient(90deg, #d5e0f2 0%, #b8cdf0 100%);
    z-index: 0;
}
.htnlp-step--last .htnlp-step-connector { display: none; }
.htnlp-step-content { margin-top: 18px; }
.htnlp-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #163496;
    margin: 0 0 6px;
    line-height: 1.3;
}
.htnlp-step-title i {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #163496;
}
.htnlp-step-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.htnlp-verification .htnlp-section-subtext {
    background: #eff3fa;
    border: 1px solid #d5e0f2;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 40px;
    display: inline-block;
}

/* ── SECTION: OFFERINGS ───────────────────────────────────────── */
.htnlp-offerings {
    background: #fafbff;
    padding: 80px 0;
}
.htnlp-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.htnlp-offering-card {
    padding: 32px 26px 28px;
    display: flex;
    flex-direction: column;
}
.htnlp-offering-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff3fa, #dce8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s, background 0.3s;
}
.htnlp-offering-card:hover .htnlp-offering-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, #163496, #1e4db7);
}
.htnlp-offering-icon {
    font-size: 1.5rem;
    color: #163496;
    transition: color 0.3s;
}
.htnlp-offering-card:hover .htnlp-offering-icon { color: #fff; }
.htnlp-offering-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}
.htnlp-offering-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
}
/* Advantage block */
.htnlp-advantage {
    margin-top: 48px;
    background: linear-gradient(135deg, #fff 0%, #f5f8ff 100%);
    border-radius: 24px;
    border: 1px solid #d5e0f2;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(22,52,150,0.06);
}
.htnlp-advantage > .htnlp-subheading { text-align: center; margin-bottom: 28px; }
.htnlp-advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.htnlp-advantage-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.htnlp-advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff3fa, #dce8ff);
    color: #163496;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.htnlp-advantage-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.htnlp-advantage-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── SECTION: COVERAGE ────────────────────────────────────────── */
.htnlp-coverage {
    background: linear-gradient(135deg, #163496 0%, #1a3ea8 50%, #1e4db7 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.htnlp-coverage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.htnlp-coverage .htnlp-container { position: relative; z-index: 1; }
.htnlp-coverage .htnlp-section-header { margin-bottom: 36px; }
.htnlp-coverage .htnlp-section-heading { color: #fff; }
.htnlp-coverage .htnlp-section-subtext { color: rgba(255,255,255,0.8); max-width: 600px; }
.htnlp-city-chips {
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.htnlp-city-chip {
    font-size: 0.88rem;
    padding: 8px 18px;
    background: linear-gradient(145deg, #fff3ef, #ffe0d6);
    color: #bf360c;
    border-color: #ff8a65;
    border-radius: 24px;
    backdrop-filter: blur(6px);
    font-weight: 600;
    gap: 7px;
    transition: background 0.3s cubic-bezier(0.165,0.84,0.44,1),
                color 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.htnlp-city-chip:hover {
    background: linear-gradient(145deg, #ff5722, #e64a19);
    color: #fff;
    border-color: #ff5722;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 20px rgba(191,54,12,0.25), 0 3px 8px rgba(255,87,34,0.15);
}
.htnlp-coverage-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.htnlp-coverage-note .htnlp-keyword-link {
    color: rgba(255,255,255,0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── SECTION: FAQ ─────────────────────────────────────────────── */
.htnlp-faq {
    background: #fafbff;
    padding: 80px 0;
}
.htnlp-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.htnlp-faq-item {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
}
.htnlp-faq-item:hover {
    box-shadow: 0 4px 16px rgba(22,52,150,0.07);
    border-color: #c5d5f0;
}
.htnlp-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    gap: 16px;
    transition: background 0.25s;
}
.htnlp-faq-trigger:focus-visible {
    outline: 2px solid #163496;
    outline-offset: -2px;
}
.htnlp-faq-question {
    font-size: 0.98rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
    flex: 1;
}
.htnlp-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eff3fa;
    color: #163496;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    transition: background 0.25s, color 0.25s, transform 0.3s;
    font-style: normal;
}
.htnlp-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.htnlp-faq-answer {
    padding: 4px 24px 22px;
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.75;
    border-top: 1px solid #f0f4ff;
}
.htnlp-faq-answer p { margin: 0; }
.htnlp-faq-item.is-open {
    border-color: #b8cdf0;
    box-shadow: 0 4px 20px rgba(22,52,150,0.09);
}
.htnlp-faq-item.is-open .htnlp-faq-trigger { background: #f5f8ff; }
.htnlp-faq-item.is-open .htnlp-faq-question { color: #163496; }
.htnlp-faq-item.is-open .htnlp-faq-icon {
    background: #163496;
    color: #fff;
    transform: rotate(45deg);
}
.htnlp-faq-item.is-open .htnlp-faq-answer { border-top-color: #d5e0f2; }

/* ── SECTION: SEO CONTENT ─────────────────────────────────────── */
.htnlp-seo-content {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #f0f4ff;
}
.htnlp-seo-container { max-width: 820px; }
.htnlp-seo-content .htnlp-section-heading {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #eff3fa;
}
.htnlp-seo-block { margin-bottom: 44px; }
.htnlp-seo-subheading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163496;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}
.htnlp-seo-subheading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.3em;
    background: linear-gradient(180deg, #163496, #1e4db7);
    border-radius: 2px;
    flex-shrink: 0;
}
.htnlp-seo-block p {
    font-size: 0.97rem;
    color: #334155;
    line-height: 1.8;
    margin: 0 0 14px;
}
.htnlp-seo-list {
    padding-left: 0;
    list-style: none;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.htnlp-seo-list li {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.65;
    padding-left: 24px;
    position: relative;
}
.htnlp-seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #163496;
    font-weight: 700;
}
.htnlp-seo-city-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 16px;
}
.htnlp-city-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #163496;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: #eff3fa;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #d5e0f2;
    transition: background 0.2s, color 0.2s;
}
.htnlp-city-link:hover { background: #163496; color: #fff; border-color: #163496; }
.htnlp-keyword-link {
    color: #163496;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.htnlp-keyword-link:hover { opacity: 0.75; }

/* ── SECTION: TUTOR CTA ───────────────────────────────────────── */
.htnlp-tutor-cta {
    background: #fafbff;
    padding: 80px 0;
}

/* Orange chip variant for tutor subject tags */
.htnlp-chip--orange {
    background: linear-gradient(145deg, #fff3ef, #ffe0d6);
    color: #bf360c;
    border-color: #ff8a65;
}
.htnlp-chip--orange:hover {
    background: linear-gradient(145deg, #ff5722, #e64a19);
    color: #fff;
    border-color: #ff5722;
}

/* Subtext */
.htnlp-tutor-cta .htnlp-tutor-subtext {
    color: #ff5722;
    font-weight: 600;
}

/* ── How It Works steps ──── */
.htnlp-tutor-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}
.htnlp-tutor-step-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ffe0d6;
    padding: 28px 20px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1),
                background 0.3s ease,
                border-color 0.3s ease;
}
.htnlp-tutor-step-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(145deg, #fff3ef, #ffe0d6);
    border-color: #ff8a65;
    box-shadow: 0 12px 32px rgba(191,54,12,0.15), 0 4px 10px rgba(255,87,34,0.1);
}
.htnlp-tutor-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff3ef, #ffe0d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff5722;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.htnlp-tutor-step-card:hover .htnlp-tutor-step-icon {
    background: linear-gradient(135deg, #ff5722, #bf360c);
    color: #fff;
    transform: scale(1.12) rotate(-6deg);
}
.htnlp-tutor-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ff5722;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.htnlp-tutor-step-card:hover .htnlp-tutor-step-title {
    color: #bf360c;
}
.htnlp-tutor-step-desc {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Subject grid ──── */
.htnlp-tutor-subjects {
    margin-bottom: 56px;
}
.htnlp-tutor-subjects .htnlp-subheading {
    text-align: center;
    margin-bottom: 28px;
    color: #ff5722;
}
.htnlp-tutor-subject-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.htnlp-tutor-subject-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ffe0d6;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.3s cubic-bezier(0.165,0.84,0.44,1),
                background 0.3s ease,
                border-color 0.3s ease;
}
.htnlp-tutor-subject-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #fff3ef, #ffe0d6);
    border-color: #ff8a65;
    box-shadow: 0 10px 28px rgba(191,54,12,0.14), 0 3px 8px rgba(255,87,34,0.1);
}
.htnlp-tutor-subject-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff3ef, #ffe0d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff5722;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.htnlp-tutor-subject-card:hover .htnlp-tutor-subject-icon {
    background: linear-gradient(135deg, #ff5722, #bf360c);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}
.htnlp-tutor-subject-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ff5722;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.htnlp-tutor-subject-card:hover .htnlp-tutor-subject-title {
    color: #bf360c;
}
.htnlp-tutor-subject-desc {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Benefits block ──── */
.htnlp-tutor-benefits {
    background: linear-gradient(135deg, #fff3ef 0%, #ffe0d6 100%);
    border-color: #ff8a65;
}
.htnlp-tutor-benefits > .htnlp-subheading {
    color: #ff5722;
}
.htnlp-tutor-benefits .htnlp-advantage-icon {
    background: linear-gradient(135deg, #fff3ef, #ffe0d6);
    color: #ff5722;
    transition: background 0.3s ease, color 0.3s ease;
}
.htnlp-tutor-benefits .htnlp-advantage-item:hover .htnlp-advantage-icon {
    background: linear-gradient(135deg, #ff5722, #bf360c);
    color: #fff;
}
.htnlp-tutor-benefits .htnlp-advantage-item strong {
    color: #bf360c;
}

/* ── Responsive ──── */
@media (max-width: 1024px) {
    .htnlp-tutor-subject-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .htnlp-tutor-steps { grid-template-columns: repeat(2, 1fr); }
    .htnlp-tutor-subject-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .htnlp-tutor-steps { grid-template-columns: 1fr; }
    .htnlp-tutor-subject-grid { grid-template-columns: 1fr; }
}

/* ── SECTION: CONTACT ─────────────────────────────────────────── */
.htnlp-contact {
    background: linear-gradient(140deg, #0d1f6b 0%, #163496 50%, #1e4db7 100%);
    padding: 80px 24px 72px;
    position: relative;
    overflow: hidden;
}
.htnlp-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.04) 0%, transparent 55%);
    pointer-events: none;
}
.htnlp-contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.htnlp-contact-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 16px;
}
.htnlp-contact-subtext {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.htnlp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.htnlp-cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}
.htnlp-cta-chip:hover {
    background: #fff;
    color: #163496;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.htnlp-contact-address {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px 24px;
    text-align: left;
}
.htnlp-address-icon {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.htnlp-address-text {
    font-style: normal;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
}
.htnlp-social-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.htnlp-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.htnlp-social-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* ── KEYWORD & MISC ───────────────────────────────────────────── */
.htnlp-keyword-label { font-weight: 600; color: #163496; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (min-width: 769px) {
    .htnlp-stats-track {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }
}

@media (max-width: 1024px) {
    .htnlp-offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .htnlp-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .htnlp-credential-card { position: static; }
}

@media (max-width: 768px) {
    .htnlp-section { padding: 56px 0; }
    .htnlp-section-heading { font-size: 1.85rem; }
    .htnlp-hero { padding: 64px 20px 72px; }
    .htnlp-hero-heading { font-size: 2rem; }
    .htnlp-hero-tagline { font-size: 1rem; }

    .htnlp-stats-track { flex-wrap: wrap; overflow: visible; justify-content: center; }

    .htnlp-why-grid { grid-template-columns: 1fr; }
    .htnlp-path-row { grid-template-columns: 1fr; }

    .htnlp-steps-flow { flex-direction: column; gap: 20px; }
    .htnlp-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }
    .htnlp-step-connector { display: none; }
    .htnlp-step-content { margin-top: 0; }
    .htnlp-step-title i { display: inline; margin-right: 4px; font-size: 0.9em; }

    .htnlp-advantage-list { grid-template-columns: 1fr; gap: 20px; }
    .htnlp-advantage { padding: 28px 20px; }

    .htnlp-contact-heading { font-size: 1.75rem; }
    .htnlp-contact { padding: 60px 20px; }
}

@media (max-width: 600px) {
    .htnlp-hero-heading { font-size: 1.65rem; }
    .htnlp-offerings-grid { grid-template-columns: 1fr; }
    .htnlp-cta-row { display: grid; grid-template-columns: 1fr 1fr; }
    .htnlp-cta-chip { justify-content: center; }
    .htnlp-contact-heading { font-size: 1.5rem; }
    .htnlp-faq-trigger { padding: 16px 18px; }
    .htnlp-faq-answer { padding: 4px 18px 18px; }
    .htnlp-about-grid { gap: 28px; }
    .htnlp-why-card { padding: 24px 20px; }
    .htnlp-section-header { margin-bottom: 36px; }
}
