/* ─────────────────────────────────────────────────────────────────────────────
   Yogaboomi — Brand CSS
   Fonts loaded in _Layout.cshtml via Google Fonts
   ───────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --earth: #2D4A3E;
    --earth-deep: #1a3d30;
    --earth-mid: #3D6357;
    --saffron: #E8793A;
    --saffron-pale: #FEF3EC;
    --cream: #FAF7F2;
    --white: #fff;
    --warm-white: #FFFFFF;
    --saffron-light: #F5A96B;
    --text: #1A2E28;
    --muted: #6B7280;
    --light: #B0B8B4;
    --border: #EAE3DA;
    --green: #15803d;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */

.yb-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.yb-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--earth);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.yb-logo span { color: var(--saffron); }

.yb-nav-right { display: flex; align-items: center; gap: 12px; }

.yb-nav-link {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
}

.yb-nav-cta {
    background: var(--earth);
    color: white;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */

footer { background: var(--text); color: rgba(255,255,255,0.5); padding: 24px 5%; text-align: center; font-size: 12px; }
.f-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.5px; }
.f-logo span { color: var(--saffron); }
.f-links { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
.f-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.f-links a:hover { color: white; }

/* ── TYPOGRAPHY UTILITIES ────────────────────────────────────────────────────── */

.sec-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--saffron);
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */

.btn-primary {
    background: var(--earth);
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--earth-mid); color: white; }

.btn-saffron {
    background: var(--saffron);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(232,121,58,0.3);
    transition: background 0.2s;
}

.btn-saffron:hover { background: #d4692a; color: white; }

/* ─────────────────────────────────────────────────────────────────────────────
   HOMEPAGE
   ───────────────────────────────────────────────────────────────────────────── */

/* Nav (homepage uses plain <nav> from design) */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--earth); font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; display: inline-block; }
.logo span { color: var(--saffron); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--earth); }
.nav-cta { background: var(--earth); color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.1s; font-family: 'Plus Jakarta Sans', sans-serif; }
.nav-cta:hover { background: var(--earth-mid); transform: translateY(-1px); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(232,121,58,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 10% 80%, rgba(45,74,62,0.06) 0%, transparent 60%);
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,121,58,0.1); border: 1px solid rgba(232,121,58,0.2);
    color: var(--saffron); padding: 6px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-tag::before { content: '🇮🇳'; font-size: 14px; }
h1 {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -1.5px; color: var(--text);
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
h1 .accent { color: var(--saffron); }
h1 .underline { position: relative; display: inline-block; color: var(--earth); }
h1 .underline::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0; height: 4px;
    background: var(--saffron); border-radius: 2px; opacity: 0.4;
}
.hero-sub {
    font-size: 17px; color: var(--muted); line-height: 1.7;
    margin-bottom: 36px; max-width: 460px; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-btn-primary {
    background: var(--saffron); color: #fff;
    padding: 15px 30px; border-radius: 50px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; box-shadow: 0 4px 20px rgba(232,121,58,0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-btn-primary:hover { background: #d4692a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,121,58,0.35); color: #fff; }
.btn-secondary {
    color: var(--earth); font-size: 15px; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    padding: 15px 0;
}
.btn-secondary:hover { color: var(--saffron); }
.hero-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
    background: var(--warm-white);
    border-radius: 24px; padding: 28px;
    box-shadow: 0 20px 60px rgba(26,46,40,0.12);
    position: relative;
}
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.card-title { font-weight: 700; font-size: 14px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; }
.card-sub { font-size: 12px; color: var(--muted); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.stat-box { background: var(--cream); border-radius: 14px; padding: 14px 12px; text-align: center; }
.stat-val { font-size: 20px; font-weight: 800; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-val.green { color: #16a34a; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.wa-row { background: #f0fdf4; border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.wa-icon { font-size: 22px; }
.wa-text { font-size: 13px; color: var(--text); font-weight: 500; }
.wa-sent { font-size: 11px; color: #16a34a; margin-top: 2px; }
.payment-row { background: var(--cream); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.payment-left { font-size: 13px; color: var(--text); font-weight: 500; }
.payment-amount { font-size: 16px; font-weight: 800; color: #16a34a; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Floating badges */
.float-badge {
    position: absolute; background: white; border-radius: 14px;
    padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-size: 12px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    animation: float 3s ease-in-out infinite;
}
.float-badge.left { left: -40px; top: 40%; animation-delay: 0.5s; }
.float-badge.bottom { right: -20px; bottom: -20px; animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Logos bar */
.logos-bar {
    background: var(--warm-white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 20px 5%;
    display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.logos-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-right: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.logo-pill { background: var(--cream); border: 1px solid var(--border); border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--muted); }

/* Pain section */
.pain {
    padding: 80px 5%;
    max-width: 1200px; margin: 0 auto;
    text-align: center;
}
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--saffron); margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }
.section-title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--text); margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto 48px; line-height: 1.7; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
    background: var(--warm-white); border: 1px solid var(--border);
    border-radius: 20px; padding: 28px; text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover { box-shadow: 0 12px 36px rgba(26,46,40,0.08); transform: translateY(-3px); }
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.pain-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Features section */
.features { background: var(--earth); padding: 80px 5%; color: white; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-label { color: var(--saffron-light); }
.features .section-title { color: white; }
.features .section-sub { color: rgba(255,255,255,0.6); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 28px; transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.1); }
.feature-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.feature-tag { display: inline-block; margin-top: 14px; background: rgba(232,121,58,0.15); border: 1px solid rgba(232,121,58,0.3); color: var(--saffron-light); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; }

/* Testimonials */
.testimonials { padding: 80px 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 20px; padding: 28px; text-align: left; }
.stars { color: var(--saffron); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; background: var(--cream); }
.author-name { font-size: 14px; font-weight: 700; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; }
.author-loc { font-size: 12px; color: var(--muted); }

/* Pricing */
.pricing { background: var(--cream); padding: 80px 5%; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.price-card {
    background: var(--warm-white); border: 1px solid var(--border);
    border-radius: 24px; padding: 32px 28px;
    text-align: left; position: relative;
    transition: box-shadow 0.2s;
}
.price-card:hover { box-shadow: 0 12px 40px rgba(26,46,40,0.1); }
.price-card.popular { border-color: var(--saffron); box-shadow: 0 8px 32px rgba(232,121,58,0.15); }
.popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--saffron); color: white;
    padding: 4px 16px; border-radius: 50px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-price { font-size: 36px; font-weight: 800; color: var(--text); letter-spacing: -1px; font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-desc { font-size: 13px; color: var(--muted); margin: 8px 0 20px; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { font-size: 13px; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.check { color: #16a34a; font-size: 15px; }
.plan-btn { display: block; text-align: center; padding: 13px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.plan-btn.outline { border: 2px solid var(--earth); color: var(--earth); }
.plan-btn.outline:hover { background: var(--earth); color: white; }
.plan-btn.filled { background: var(--saffron); color: white; box-shadow: 0 4px 16px rgba(232,121,58,0.3); }
.plan-btn.filled:hover { background: #d4692a; }

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--earth) 0%, #1a3d30 100%);
    padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,121,58,0.12) 0%, transparent 70%);
}
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }
.cta-section h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.6; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white { background: white; color: var(--earth); padding: 15px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost-white { border: 2px solid rgba(255,255,255,0.3); color: white; padding: 13px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-ghost-white:hover { border-color: white; }

/* ─────────────────────────────────────────────────────────────────────────────
   DIRECTORY
   ───────────────────────────────────────────────────────────────────────────── */

.dir-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 48px 5% 36px;
}

.dir-hero-inner { max-width: 1200px; margin: 0 auto; }

.dir-hero-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--saffron);
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dir-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.dir-hero-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    max-width: 580px;
    box-shadow: 0 2px 12px rgba(26,46,40,0.06);
    transition: border-color 0.2s;
}

.search-bar:focus-within { border-color: var(--earth); }

.search-icon { padding: 0 16px; color: var(--light); font-size: 16px; flex-shrink: 0; }

.search-input {
    flex: 1;
    padding: 13px 0;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: transparent;
}

.search-input::placeholder { color: var(--light); }

.search-btn {
    background: var(--earth);
    color: white;
    padding: 10px 22px;
    margin: 5px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}

.filters-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filters-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filters-inner::-webkit-scrollbar { display: none; }

.filter-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
    margin-right: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    outline: none;
    appearance: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.filter-select:focus { border-color: var(--earth); }

.filter-chip {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--muted);
    background: var(--white);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.15s;
    text-decoration: none;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: var(--earth);
    background: var(--earth);
    color: white;
}

.filter-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; margin: 0 4px; }

.results-count {
    margin-left: auto;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.dir-body { max-width: 1200px; margin: 0 auto; padding: 32px 5% 64px; }

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Teacher card */
.teacher-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.teacher-card:hover {
    box-shadow: 0 8px 32px rgba(26,46,40,0.1);
    transform: translateY(-2px);
}

.card-photo {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--earth);
    flex-shrink: 0;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s;
}

.teacher-card:hover .card-photo img { transform: scale(1.03); }

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    border-radius: 8px;
    padding: 5px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.card-badge .star { color: var(--saffron); }

.card-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--saffron);
    color: white;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-verified {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--earth);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }

.card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.card-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.card-chip {
    font-size: 11px;
    font-weight: 600;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 3px 9px;
    border-radius: 50px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--light);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.card-meta-item { display: flex; align-items: center; gap: 4px; }

.card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.card-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}

.card-price span { font-size: 11px; font-weight: 400; color: var(--light); }

.card-btn {
    background: var(--earth);
    color: white;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.card-btn:hover { background: var(--earth-mid); color: white; }

.load-more-wrap { text-align: center; margin-top: 40px; }

.load-more {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s;
}

.load-more:hover { border-color: var(--earth); color: var(--earth); }

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon { font-size: 48px; margin-bottom: 16px; }

.empty-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-sub { font-size: 14px; color: var(--muted); }

.cta-banner {
    background: var(--earth);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.cta-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.cta-banner-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────────────────────
   PROFILE PAGE
   ───────────────────────────────────────────────────────────────────────────── */

.profile-nav-left { display: flex; align-items: center; gap: 0; }

.profile-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: -0.3px;
    text-decoration: none;
}

.profile-logo span { color: var(--saffron); }

.nav-sep { width: 1px; height: 16px; background: var(--border); margin: 0 14px; }

.nav-teacher {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.hero-outer {
    background: var(--white);
    padding: 32px 5%;
}

.profile-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 40px;
    align-items: stretch;
}

.profile-hero-left {
    display: flex;
    flex-direction: column;
    padding: 0 32px 0 0;
    min-width: 0;
}

.profile-hero-top {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 24px;
}

.profile-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: #111;
    letter-spacing: -1px;
    line-height: 1.15;
}

.profile-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.profile-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.3px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background: var(--saffron);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.profile-location { font-size: 13px; color: var(--light); display: flex; align-items: center; gap: 5px; }

.profile-hero-bottom { display: flex; flex-direction: column; margin-top: auto; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 100px;
    border-radius: 12px;
    overflow: hidden;
}

.hstat {
    background: var(--text);
    padding: 14px 18px;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    min-width: 0;
}

.hstat:nth-child(5) { border-right: none; border-bottom: none; }
.hstat:nth-child(4) { border-bottom: none; }

.hstat-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hstat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: white; }
.hstat-val.sm { font-size: 12px; }

.stats-social-col {
    background: var(--text);
    border-left: 1px solid rgba(255,255,255,0.07);
    grid-row: 1 / span 2;
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.soc-icons-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 72px; }

.soc-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.soc-icon:hover { background: rgba(255,255,255,0.22); }
.soc-icon svg { width: 13px; height: 13px; }

.profile-hero-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 8px 40px rgba(26,46,40,0.14);
}

.carousel { position: relative; height: 100%; overflow: hidden; }
.carousel-track { display: flex; height: 100%; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }

.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.25s; border: none; }
.dot.active { background: white; width: 22px; border-radius: 4px; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    color: var(--text);
    transition: background 0.2s;
}

.carousel-btn:hover { background: white; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.hero-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    z-index: 2;
}

.badge-rating { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--text); line-height: 1; }
.badge-stars { color: var(--saffron); font-size: 11px; margin-top: 3px; letter-spacing: 1px; }
.badge-count { font-size: 10px; color: var(--muted); margin-top: 2px; }

.page-body { background: var(--cream); padding-top: 40px; margin-top: 32px; }

.profile-body { max-width: 1200px; margin: 0 auto; padding: 0 5% 64px; }
.body-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.profile-main { display: flex; flex-direction: column; gap: 52px; }

.sec-text { font-size: 15px; line-height: 1.85; color: var(--muted); }
.sec-text strong { color: var(--text); font-weight: 600; }

.spec-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.spec-chip { border: 1px solid var(--border); border-radius: 50px; padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--text); background: var(--white); }

/* Programs */
.prog-list { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.prog { padding: 20px 24px; background: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.prog:last-child { border-bottom: none; }
.prog:hover { background: var(--cream); }
.prog-left { flex: 1; }
.prog-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.prog-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.prog-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.prog-tag { font-size: 11px; font-weight: 600; background: var(--cream); border: 1px solid var(--border); color: var(--muted); padding: 3px 9px; border-radius: 50px; }
.prog-right { text-align: right; flex-shrink: 0; }
.prog-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--earth); }
.prog-per { font-size: 11px; color: var(--light); margin-top: 2px; }

/* Schedule */
.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sched { background: var(--white); border-radius: 12px; padding: 16px; text-align: center; border: 1px solid var(--border); }
.sched.hot { background: var(--saffron); border-color: var(--saffron); }
.sched-day { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--light); margin-bottom: 6px; }
.sched.hot .sched-day { color: rgba(255,255,255,0.7); }
.sched-time { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
.sched.hot .sched-time { color: white; }
.sched-type { font-size: 11px; color: var(--muted); margin-top: 3px; }
.sched.hot .sched-type { color: rgba(255,255,255,0.85); }

/* Reviews */
.rating-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.rating-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 52px; font-weight: 800; color: var(--text); line-height: 1; }
.stars { color: var(--saffron); font-size: 20px; letter-spacing: 2px; }
.rating-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.review-list { display: flex; flex-direction: column; gap: 14px; }
.review { padding: 20px 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--white); }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.review-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.review-author { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.review-meta { font-size: 12px; color: var(--light); margin-top: 2px; }
.review-stars { color: var(--saffron); font-size: 14px; letter-spacing: 1px; }

/* Reviews */
.reviews-empty { font-size: 13px; color: var(--light); padding: 16px 0; }

/* Review submit form card */
.review-form-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; }
.review-form-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--text); }
.review-form-sub { font-size: 12px; color: var(--muted); }
.rf-field { margin-bottom: 10px; }
.rf-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 5px; }
.rf-input { width: 100%; padding: 9px 11px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.rf-input:focus { border-color: var(--earth); }
.rf-textarea { resize: vertical; min-height: 60px; }
.rf-btn { width: 100%; padding: 11px; background: var(--earth); color: white; border: none; border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: background 0.2s; margin-top: 4px; }
.rf-btn:hover { background: var(--earth-mid); }
.rf-btn:disabled { opacity: 0.6; cursor: default; }

/* Star picker */
.star-picker { display: flex; gap: 6px; cursor: pointer; margin-bottom: 2px; }
.sp-star { font-size: 30px; color: #d1d5db; transition: color 0.1s; line-height: 1; user-select: none; }
.sp-star.active { color: var(--saffron); }
.sp-star:hover { color: var(--saffron); }

/* Videos */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vid { cursor: pointer; }
.vid-thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; position: relative; background: #1a2e1a; }
.vid-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: space-between; padding: 10px; transition: background 0.2s; }
.vid:hover .vid-ov { background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.play { width: 36px; height: 36px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; align-self: center; margin: auto; }
.vid-ov-bottom { display: flex; flex-direction: column; gap: 2px; }
.vid-ov-title { font-size: 12px; font-weight: 600; color: white; line-height: 1.35; }
.vid-views { font-size: 11px; color: rgba(255,255,255,0.65); }

/* Certs */
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.cert-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.cert-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.cert-by { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Location */
.loc-map { height: 180px; border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-addr { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.loc-dir { font-size: 13px; font-weight: 700; color: var(--earth); cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
.areas { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.area { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 4px 11px; font-size: 12px; color: var(--muted); }

/* FAQ */
.faq { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); gap: 12px; transition: background 0.15s; }
.faq-q:hover { background: var(--cream); }
.faq-icon { font-size: 20px; color: var(--light); flex-shrink: 0; transition: transform 0.2s; line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--saffron); }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; padding: 0 20px 16px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Sidebar contact card */
.sidebar { position: sticky; top: 80px; }
.contact-card { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 32px rgba(26,46,40,0.08); }
.contact-top { background: var(--earth); padding: 24px; }
.contact-card-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: white; }
.contact-card-price sub { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); }
.contact-price-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; margin-bottom: 18px; }
.trial-row { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.trial-icon { font-size: 18px; flex-shrink: 0; }
.trial-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: white; }
.trial-desc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.contact-body { padding: 20px; background: var(--white); }
.details-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.detail-row { display: flex; justify-content: space-between; font-size: 13px; align-items: center; }
.detail-lbl { color: var(--muted); }
.detail-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--text); }
.status-val { display: flex; align-items: center; gap: 5px; color: var(--green); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.form-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--light); margin-bottom: 8px; display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.form-input { width: 100%; padding: 11px 13px; margin-bottom: 8px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; color: var(--text); background: var(--white); transition: border-color 0.2s; }
.form-input:focus { border-color: var(--earth); }
select.form-input { cursor: pointer; appearance: none; }
.btn-send { display: block; width: 100%; padding: 13px 24px; background: var(--earth); color: white; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 8px; box-shadow: 0 4px 16px rgba(45,74,62,0.2); transition: background 0.2s; text-align: center; }
.btn-send:hover { background: var(--earth-mid); }
.btn-wa-card { width: 100%; padding: 12px; background: none; border: 1.5px solid #25d366; color: #1da851; border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background 0.2s; text-decoration: none; }
.btn-wa-card:hover { background: rgba(37,211,102,0.06); }
.share-row { display: flex; gap: 8px; margin-top: 10px; }
.share-btn { flex: 1; padding: 9px; border: 1px solid var(--border); border-radius: 10px; font-size: 12px; font-weight: 600; cursor: pointer; background: var(--white); color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; text-align: center; transition: all 0.15s; }
.share-btn:hover { border-color: var(--earth); color: var(--earth); }

/* Inquiry form success/error states */
.inquiry-success { background: #dcfce7; border: 1px solid #86efac; border-radius: 10px; padding: 14px; margin-bottom: 12px; font-size: 13px; color: #15803d; font-weight: 600; display: none; }
.inquiry-error { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 10px; padding: 14px; margin-bottom: 12px; font-size: 13px; color: #dc2626; display: none; }

/* SEO text block */
.seo-block { background: var(--cream); border-top: 1px solid var(--border); padding: 48px 5%; }
.seo-inner { max-width: 1200px; margin: 0 auto; }
.seo-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.seo-p { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 680px; margin-bottom: 16px; }
.seo-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.seo-chip { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 4px 12px; font-size: 12px; color: var(--muted); }

/* Sticky bottom bar */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 12px 5%; display: flex; gap: 10px; align-items: center; box-shadow: 0 -4px 24px rgba(0,0,0,0.07); }
.sticky-info { flex: 1; }
.sticky-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.sticky-sub { font-size: 12px; color: var(--muted); }
.sticky-btn { background: var(--earth); color: white; padding: 11px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; }
.sticky-wa { background: #25d366; color: white; padding: 11px 14px; border-radius: 50px; font-size: 15px; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .teacher-grid { grid-template-columns: repeat(2, 1fr); }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .profile-hero { grid-template-columns: 1fr; gap: 20px; }
    .profile-hero-right { height: 320px; }
    .profile-hero-left { padding: 0; }
    .body-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .cert-grid, .video-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-social-col { grid-column: 1 / span 2; grid-row: 3; border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 768px) {
    nav { padding: 14px 5%; }
    .nav-links { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .float-badge { display: none; }
    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .teacher-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 28px 24px; }
    .sched-grid { grid-template-columns: 1fr 1fr; }
    .cert-grid, .video-grid { grid-template-columns: 1fr; }
}
