/* ═══════════════════════════════════════════════
   Tutor Place – Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --sakura: #E8748A;
  --sakura-dark: #c04b68;
  --sakura-light: #F9D0D8;
  --sakura-pale: #FFF0F3;
  --ink: #1A1A2E;
  --ink-soft: #3D3D5C;
  --gold: #C9A84C;
  --gold-light: #F5E6C0;
  --cream: #FDFAF6;
  --teal: #2C7873;
  --shadow-sm: 0 2px 12px rgba(232,116,138,.12);
  --shadow-md: 0 8px 32px rgba(26,26,46,.12);
  --shadow-lg: 0 20px 60px rgba(26,26,46,.18);
  --radius-card: 20px;
  --radius-btn: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Thai', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sakura); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sakura-dark); }

/* ─── NAVBAR ─── */
.tp-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(253,250,246,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sakura-light);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.tp-nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.tp-nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  color: #fff; font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.tp-nav-logo .logo-text {
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--sakura), var(--ink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.tp-nav-links { display: flex; gap: 32px; list-style: none; }
.tp-nav-links a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.tp-nav-links a:hover { color: var(--sakura); }
.tp-nav-cta {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  padding: 10px 22px; border-radius: var(--radius-btn); font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(232,116,138,.35);
  transition: transform .2s, box-shadow .2s;
}
.tp-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,116,138,.45); }

/* ─── BUTTONS ─── */
.tp-btn, .wp-block-button__link {
  display: inline-block; padding: 14px 34px;
  border-radius: var(--radius-btn); font-weight: 700; font-size: 1rem;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
  font-family: inherit; border: none;
}
.tp-btn-primary, .wp-block-button.is-style-fill .wp-block-button__link {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  color: #fff; box-shadow: 0 6px 24px rgba(232,116,138,.4);
}
.tp-btn-primary:hover, .wp-block-button.is-style-fill .wp-block-button__link:hover {
  transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,116,138,.5); color: #fff;
}
.tp-btn-outline {
  background: #fff; color: var(--ink);
  border: 2px solid var(--sakura-light);
}
.tp-btn-outline:hover { border-color: var(--sakura); color: var(--sakura); }

/* ─── SECTION SHARED ─── */
.tp-section { padding: 96px 5%; }
.tp-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sakura); margin-bottom: 16px;
}
.tp-section-tag::before { content: ''; width: 24px; height: 2px; background: var(--sakura); }
.tp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900;
  color: var(--ink); line-height: 1.2; margin-bottom: 16px;
}
.tp-desc {
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; max-width: 560px;
}
.tp-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}

/* ─── HERO ─── */
.tp-hero {
  min-height: 100vh;
  background: linear-gradient(160deg,#fff0f3 0%,#fdfaf6 40%,#e8f4f8 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px; position: relative; overflow: hidden;
}
.tp-hero::before {
  content: ''; position: absolute; top: -100px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle,rgba(232,116,138,.15),transparent 70%);
  pointer-events: none;
}
.tp-hero::after {
  content: '桜'; position: absolute; right: 8%; top: 30%;
  font-family: 'Noto Serif JP', serif;
  font-size: 220px; color: rgba(232,116,138,.06);
  pointer-events: none; line-height: 1;
}
.tp-hero-inner { max-width: 680px; position: relative; z-index: 1; }
.tp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1px solid var(--gold);
  color: #8B6914; border-radius: var(--radius-btn);
  padding: 6px 16px; font-size: .82rem; font-weight: 600; margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.tp-hero-badge::before { content: '✦'; font-size: 10px; }
.tp-hero-jp {
  font-family: 'Noto Serif JP', serif; font-size: 1rem; color: var(--sakura);
  letter-spacing: .15em; margin-bottom: 16px;
  animation: fadeUp .6s .1s ease both;
}
.tp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.15; color: var(--ink); margin-bottom: 20px;
  animation: fadeUp .6s .15s ease both;
}
.tp-hero h1 span {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.tp-hero-desc {
  font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft);
  margin-bottom: 36px; animation: fadeUp .6s .2s ease both;
}
.tp-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.tp-hero-stats {
  display: flex; gap: 36px; margin-top: 50px;
  animation: fadeUp .6s .4s ease both;
}
.tp-stat { text-align: left; }
.tp-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; }
.tp-stat-num em { color: var(--sakura); font-style: normal; }
.tp-stat-label { font-size: .82rem; color: #888; margin-top: 3px; }

/* ─── LANGUAGE CARDS ─── */
.tp-lang-section { background: #fff; }
.tp-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tp-lang-card {
  border-radius: 24px; padding: 44px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s; cursor: pointer; color: #fff;
}
.tp-lang-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tp-lang-card-jp { background: linear-gradient(145deg,#1A1A2E,#2d1b3d); }
.tp-lang-card-en { background: linear-gradient(145deg,#0F3460,#16213e); }
.tp-lang-bg {
  position: absolute; right: -20px; bottom: -30px;
  font-family: 'Noto Serif JP', serif;
  font-size: 130px; opacity: .08; line-height: 1; pointer-events: none; color: #fff;
}
.tp-lang-flag {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 24px; background: rgba(255,255,255,.12);
}
.tp-lang-card h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.tp-lang-card p { font-size: .92rem; opacity: .75; line-height: 1.7; margin-bottom: 28px; }
.tp-lang-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.tp-lang-features li {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 5px 12px; border-radius: 20px; font-size: .82rem;
}

/* ─── COURSES GRID ─── */
.tp-courses-section { background: var(--sakura-pale); }
.tp-courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px;
}
.tp-course-card {
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
  border: 1.5px solid transparent;
}
.tp-course-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: var(--sakura-light);
}
.tp-course-header {
  padding: 28px 28px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.tp-course-num {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 1.2rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.tp-course-level {
  font-size: .75rem; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; background: var(--sakura-pale);
  color: var(--sakura); border: 1px solid var(--sakura-light);
}
.tp-course-body { padding: 18px 28px 28px; }
.tp-course-body h3 {
  font-size: 1.02rem; font-weight: 700; line-height: 1.4;
  color: var(--ink); margin-bottom: 10px;
}
.tp-course-body p { font-size: .87rem; line-height: 1.7; color: #666; margin-bottom: 18px; }
.tp-course-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: #888;
}
.tp-course-meta span { display: flex; align-items: center; gap: 4px; }
.tp-course-footer {
  padding: 16px 28px; border-top: 1px solid #f0f0f0;
  display: flex; justify-content: space-between; align-items: center;
}
.tp-enroll-btn {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  color: #fff; border: none; border-radius: var(--radius-btn);
  padding: 8px 20px; font-size: .85rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.tp-enroll-btn:hover {
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,116,138,.4); color: #fff;
}

/* ─── PRICING ─── */
.tp-pricing-section { background: #fff; }
.tp-pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; align-items: stretch;
}
.tp-price-card {
  border-radius: 24px; padding: 36px 28px; border: 2px solid #f0f0f0;
  position: relative; transition: transform .3s, box-shadow .3s;
  background: #fff; display: flex; flex-direction: column;
}
.tp-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tp-price-card.popular {
  border-color: var(--sakura);
  box-shadow: 0 0 0 1px var(--sakura), var(--shadow-md);
  background: linear-gradient(180deg,#fff0f3,#fff 60%);
  transform: scale(1.02);
}
.tp-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  color: #fff; padding: 5px 20px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; white-space: nowrap; letter-spacing: .05em;
}
.tp-price-tier { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sakura); margin-bottom: 8px; }
.tp-price-name { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.tp-price-desc { font-size: .83rem; color: #888; margin-bottom: 24px; line-height: 1.5; }
.tp-price-amount { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed #e8e8e8; }
.tp-price-amount .currency { font-size: 1rem; font-weight: 600; color: var(--ink-soft); vertical-align: top; margin-top: 8px; display: inline-block; }
.tp-price-amount .amount { font-size: 2.6rem; font-weight: 900; color: var(--ink); line-height: 1; }
.tp-price-amount .period { font-size: .82rem; color: #aaa; }
.tp-price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.tp-price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
.tp-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sakura-pale); border: 1.5px solid var(--sakura-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--sakura); font-size: 11px; margin-top: 1px;
}
.tp-price-card.popular .tp-check { background: var(--sakura); border-color: var(--sakura); color: #fff; }
.tp-price-btn {
  display: block; text-align: center; padding: 13px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: .95rem; transition: transform .2s, box-shadow .2s;
  border: 2px solid var(--sakura-light); color: var(--sakura); background: transparent;
  text-decoration: none; font-family: inherit; cursor: pointer;
}
.tp-price-card.popular .tp-price-btn {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 20px rgba(232,116,138,.38);
}
.tp-price-btn:hover { transform: translateY(-2px); color: var(--sakura); }
.tp-price-card.popular .tp-price-btn:hover { box-shadow: 0 10px 28px rgba(232,116,138,.5); color: #fff; }

/* ─── TEACHER ─── */
.tp-teacher-section {
  background: linear-gradient(165deg,#1A1A2E,#2d1b3d);
  color: #fff; position: relative; overflow: hidden;
}
.tp-teacher-section::before {
  content: '先生'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-family: 'Noto Serif JP', serif; font-size: 200px;
  color: rgba(255,255,255,.04); pointer-events: none; line-height: 1;
}
.tp-teacher-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}
.tp-teacher-photo-wrap { position: relative; }
.tp-teacher-frame {
  width: 100%; padding-bottom: 110%; border-radius: 28px;
  background: linear-gradient(145deg,rgba(232,116,138,.3),rgba(201,168,76,.2));
  position: relative; overflow: hidden;
  border: 2px solid rgba(232,116,138,.4);
}
.tp-teacher-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tp-teacher-frame .tp-teacher-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.tp-teacher-avatar-big {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 3rem; color: #fff;
}
.tp-teacher-name { font-size: 1.4rem; font-weight: 800; color: #fff; }
.tp-teacher-en { font-size: .9rem; color: rgba(255,255,255,.5); letter-spacing: .08em; }
.tp-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--ink); border-radius: 16px;
  padding: 16px 22px; box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.tp-accent-card .num { font-size: 2rem; font-weight: 900; line-height: 1; }
.tp-accent-card .lbl { font-size: .75rem; font-weight: 600; opacity: .8; }
.tp-teacher-content .tp-section-tag { color: var(--sakura-light); }
.tp-teacher-content .tp-section-tag::before { background: var(--sakura-light); }
.tp-teacher-content .tp-heading { color: #fff; }
.tp-teacher-content .tp-desc { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.tp-credential-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.tp-credential {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 18px 22px;
}
.tp-cred-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(232,116,138,.25); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.tp-cred-text h4 { font-weight: 700; font-size: .95rem; margin-bottom: 4px; color: #fff; }
.tp-cred-text p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.tp-testi-section { background: var(--cream); }
.tp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tp-testi-card {
  background: #fff; border-radius: var(--radius-card); padding: 28px;
  border: 1.5px solid #f0f0f0; box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.tp-testi-card:hover { transform: translateY(-4px); }
.tp-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tp-testi-text { font-size: .92rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 20px; font-style: italic; }
.tp-testi-author { display: flex; align-items: center; gap: 12px; }
.tp-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .9rem; flex-shrink: 0;
}
.tp-testi-info h5 { font-size: .9rem; font-weight: 700; color: var(--ink); }
.tp-testi-info p { font-size: .78rem; color: #aaa; }

/* ─── FAQ ─── */
.tp-faq-section { background: #fff; }
.tp-faq-inner { max-width: 760px; margin: 0 auto; }
.tp-faq-item { border-bottom: 1px solid #f0f0f0; padding: 24px 0; }
.tp-faq-q {
  font-weight: 700; font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
}
.tp-faq-arrow { color: var(--sakura); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.tp-faq-a { font-size: .9rem; color: #666; line-height: 1.75; margin-top: 14px; display: none; }
.tp-faq-item.open .tp-faq-a { display: block; }
.tp-faq-item.open .tp-faq-arrow { transform: rotate(180deg); }

/* ─── CTA BANNER ─── */
.tp-cta {
  background: linear-gradient(135deg, var(--sakura), var(--sakura-dark), #9B2335);
  padding: 80px 5%; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.tp-cta::before {
  content: '勉強'; font-family: 'Noto Serif JP', serif;
  position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
  font-size: 130px; opacity: .08; pointer-events: none;
}
.tp-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 16px; color: #fff;
}
.tp-cta p { font-size: 1.05rem; opacity: .85; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.tp-btn-white {
  background: #fff; color: var(--sakura); padding: 16px 40px;
  border-radius: var(--radius-btn); font-weight: 800; font-size: 1.05rem;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 28px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s;
}
.tp-btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.28); color: var(--sakura); }

/* ─── FOOTER ─── */
.tp-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 60px 5% 32px; }
.tp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.tp-footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.5); }
.tp-footer-brand .logo-text { color: #fff; -webkit-text-fill-color: #fff; }
.tp-footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: .95rem; }
.tp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tp-footer-col a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.tp-footer-col a:hover { color: var(--sakura-light); }
.tp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 8px; font-size: .83rem; color: rgba(255,255,255,.35);
}

/* ─── LOADING STATE ─── */
.tp-loading {
  display: flex; align-items: center; justify-content: center;
  padding: 48px; color: #aaa; font-size: .95rem; gap: 12px;
}
.tp-spinner {
  width: 24px; height: 24px; border: 3px solid var(--sakura-light);
  border-top-color: var(--sakura); border-radius: 50%;
  animation: spin .8s linear infinite;
}

/* ─── EDITOR BLOCK STYLES ─── */
.wp-site-blocks { padding-top: 72px; }
.wp-block-group.alignfull { margin-left: 0; margin-right: 0; }
.is-root-container .wp-block { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .tp-pricing-grid { grid-template-columns: 1fr 1fr; }
  .tp-teacher-inner { grid-template-columns: 1fr; gap: 40px; }
  .tp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .tp-nav-links { display: none; }
  .tp-lang-grid { grid-template-columns: 1fr; }
  .tp-pricing-grid { grid-template-columns: 1fr; }
  .tp-testi-grid { grid-template-columns: 1fr; }
  .tp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tp-price-card.popular { transform: none; }
  .tp-hero-stats { gap: 20px; }
  .tp-section { padding: 64px 5%; }
  .tp-hero { padding: 90px 5% 48px; }
}
@media (max-width: 480px) {
  .tp-pricing-grid { grid-template-columns: 1fr; }
  .tp-courses-grid { grid-template-columns: 1fr; }
  .tp-hero-btns { flex-direction: column; }
  .tp-header-row { flex-direction: column; align-items: flex-start; }
}
