/* ═══════════════════════════════════════════════════
   PTE Core Page Styles
   Primary: #ffb606 (amber/gold)
   Secondary: #442e66 (deep purple)
   Dark: #1e2845 (navy)
   ═══════════════════════════════════════════════════ */

:root {
    --ptec-amber: #ffb606;
    --ptec-amber-dark: #e09e00;
    --ptec-purple: #442e66;
    --ptec-purple-light: #6b4c9a;
    --ptec-navy: #1e2845;
    --ptec-navy-light: #283456;
    --ptec-text: #1b2336;
    --ptec-muted: #64748b;
    --ptec-white: #ffffff;
    --ptec-bg-light: #f8f9fc;
    --ptec-bg-purple-soft: #f4f0fa;
    --ptec-radius: 16px;
    --ptec-shadow: 0 4px 24px rgba(68,46,102,.12);
    --ptec-container: 1200px;
}

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

.ptec-container {
    max-width: var(--ptec-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Reveal animations ─────────────────────────── */
.ptec-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.ptec-reveal.visible { opacity: 1; transform: none; }
.ptec-delay-1 { transition-delay: .1s; }
.ptec-delay-2 { transition-delay: .2s; }
.ptec-delay-3 { transition-delay: .3s; }
.ptec-delay-4 { transition-delay: .4s; }

/* ─────────────────────────────────────────────────
   § 1 — HERO
   ─────────────────────────────────────────────────*/
.ptec-hero {
    background-color: #f15a24;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
    overflow: hidden;
}
.ptec-hero-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-end;
    gap: 40px;
}
.ptec-hero-img-side {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.ptec-hero-img {
    width: 100%;
    max-width: 480px;
    height: 450px;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    display: block;
}
.ptec-hero-img-ph {
    width: 100%;
    max-width: 480px;
    height: 450px;
    background: rgba(255,255,255,.15);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
}
.ptec-hero-form-side { padding-bottom: 40px; }
.ptec-hero-hd { text-align: right; margin-bottom: 32px; }
.ptec-hero-hd h1 {
    font-size: clamp(28px,4vw,42px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #fff;
}
.ptec-hero-hd p { font-size: 16px; opacity: .95; color: #fff; }
.ptec-hero-form { display: flex; flex-direction: column; gap: 20px; }
.ptec-hero-fg { display: flex; flex-direction: column; gap: 6px; }
.ptec-hero-fg label { font-size: 14px; font-weight: 500; color: #fff; }
.ptec-hero-fg input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    font-family: inherit;
}
.ptec-hero-fg input::placeholder { color: #94a3b8; }
.ptec-hero-submit {
    background-color: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    height: 46px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 4px;
    box-shadow: 0 4px 14px rgba(59,130,246,.4);
    transition: background-color .2s;
    font-family: inherit;
}
.ptec-hero-submit:hover { background-color: #2563eb; }
.ptec-hero-submit:disabled { opacity: .7; cursor: not-allowed; }
.ptec-hero-msg {
    padding: 10px 14px; border-radius: 6px;
    font-size: 14px; font-weight: 500; margin-top: 4px;
}
.ptec-hero-msg.success { background: rgba(255,255,255,.2); color: #fff; }
.ptec-hero-msg.error { background: rgba(0,0,0,.15); color: #fff; }

/* shared buttons used by other sections */
.ptec-btn-amber {
    background: var(--ptec-amber); color: var(--ptec-navy);
    padding: 14px 32px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; display: inline-block;
    transition: background .2s, transform .2s;
}
.ptec-btn-amber:hover { background: var(--ptec-amber-dark); transform: translateY(-2px); }
.ptec-btn-outline {
    border: 2px solid rgba(255,255,255,.5); color: var(--ptec-white);
    padding: 12px 30px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    text-decoration: none; display: inline-block;
    transition: border-color .2s, background .2s;
}
.ptec-btn-outline:hover { border-color: var(--ptec-amber); background: rgba(255,182,6,.1); }
.ptec-btn-purple {
    background: var(--ptec-purple); color: var(--ptec-white);
    padding: 14px 32px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; display: inline-block;
    transition: background .2s, transform .2s;
}
.ptec-btn-purple:hover { background: var(--ptec-purple-light); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────
   § 2 — WHAT IS PTE CORE
   ─────────────────────────────────────────────────*/
.ptec-what-is { padding: 60px 0; background: var(--ptec-white); }
.ptec-what-is-hd { text-align: center; max-width: 800px; margin: 0 auto 32px; }
.ptec-what-is-hd h2 {
    font-size: clamp(22px,2.5vw,28px);
    font-weight: 700; color: #1e3a8a; margin-bottom: 16px;
}
.ptec-what-is-hd p { font-size: 13px; line-height: 1.7; color: #64748b; margin-bottom: 12px; }
.ptec-what-is-hd p:last-child { margin-bottom: 0; }
.ptec-what-is-img {
    max-width: 820px; margin: 36px auto 0;
    border-radius: 16px; overflow: hidden;
}
.ptec-what-is-img img { width: 100%; height: auto; display: block; }
.ptec-highlights {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
    max-width: 820px; margin: 28px auto 0;
}
.ptec-highlights li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 18px; background: var(--ptec-bg-light);
    border-radius: 10px; font-size: 14px; color: var(--ptec-text);
}
.ptec-highlights li::before {
    content: '✓';
    flex-shrink: 0; width: 20px; height: 20px;
    background: var(--ptec-amber); color: var(--ptec-navy);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
}
/* shared helpers still used by other sections */
.ptec-section-hd { text-align: center; margin-bottom: 48px; }
.ptec-h2 { font-size: clamp(26px,3vw,40px); font-weight: 800; color: var(--ptec-navy); margin-bottom: 12px; }
.ptec-h2-amber span { color: var(--ptec-amber); }
.ptec-h2-purple span { color: var(--ptec-purple); }
.ptec-sub { font-size: 16px; color: var(--ptec-muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ─────────────────────────────────────────────────
   § 3 — PLANS
   ─────────────────────────────────────────────────*/
.ptec-plans { padding: 60px 0; background: #f8fafc; }
.ptec-plans-hd { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.ptec-plans-hd h2 { font-size: clamp(22px,2.5vw,28px); font-weight: 700; color: #1e3a8a; margin-bottom: 12px; }
.ptec-plans-hd p { font-size: 13px; color: #64748b; line-height: 1.6; }
.ptec-plans-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start;
}
/* Pricing card base */
.ptec-pc {
    background: #fff; border-radius: 16px; padding: 30px 20px;
    text-align: center; display: flex; flex-direction: column; align-items: center;
    position: relative; box-shadow: 0 4px 20px rgba(0,0,0,.03);
    border: 1px solid #f1f5f9; transition: transform .3s, box-shadow .3s;
}
/* Theme backgrounds */
.ptec-pc.blue   { background: #faf8ff; }
.ptec-pc.red    { background: #fff7f7; }
.ptec-pc.green  { background: #f4fbf7; border: 2px solid #22c55e; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(34,197,94,.08); }
.ptec-pc.orange { background: #fffaf5; }
.ptec-pc:not(.green):hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
/* Popular badge */
.ptec-pc-badge {
    position: absolute; top: -14px;
    background: #22c55e; color: #fff;
    font-size: 11px; font-weight: 700; padding: 6px 14px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}
/* Icon circle */
.ptec-pc-icon {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.ptec-pc-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.ptec-pc.blue   .ptec-pc-icon { background: #3b82f6; }
.ptec-pc.red    .ptec-pc-icon { background: #ef4444; }
.ptec-pc.green  .ptec-pc-icon { background: #22c55e; }
.ptec-pc.orange .ptec-pc-icon { background: #f97316; }
/* Title */
.ptec-pc-title {
    font-size: 15px; font-weight: 700; color: #1e293b;
    margin-bottom: 12px; min-height: 40px;
    display: flex; align-items: center; justify-content: center;
}
/* Price */
.ptec-pc-price { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.ptec-pc.blue   .ptec-pc-price { color: #3b82f6; }
.ptec-pc.red    .ptec-pc-price { color: #ef4444; }
.ptec-pc.green  .ptec-pc-price { color: #22c55e; }
.ptec-pc.orange .ptec-pc-price { color: #f97316; }
/* Feature list */
.ptec-pc-features {
    list-style: none; width: 100%; text-align: left;
    margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px;
}
.ptec-pc-features li {
    font-size: 11px; font-weight: 500; color: #475569;
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.ptec-pc-features li svg {
    width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
    fill: none; stroke-width: 3;
}
.ptec-pc-features li.ptec-included svg { stroke: #22c55e; }
.ptec-pc-features li.ptec-excluded { opacity: .4; }
.ptec-pc-features li.ptec-excluded svg { stroke: #dc2626; }
/* Button */
.ptec-pc-btn {
    width: 100%; height: 42px; border: none; border-radius: 6px;
    font-size: 13px; font-weight: 600; color: #fff; cursor: pointer;
    transition: opacity .2s; margin-top: auto;
    text-decoration: none; display: flex; align-items: center; justify-content: center;
    font-family: inherit;
}
.ptec-pc.blue   .ptec-pc-btn { background: #3b82f6; }
.ptec-pc.red    .ptec-pc-btn { background: #ef4444; }
.ptec-pc.green  .ptec-pc-btn { background: #22c55e; }
.ptec-pc.orange .ptec-pc-btn { background: #f97316; }
.ptec-pc-btn:hover { opacity: .88; }

/* ─────────────────────────────────────────────────
   § 4 — WHY US
   ─────────────────────────────────────────────────*/
.ptec-why-us { padding: 0; background: #fff; }
.ptec-why-us-banner {
    background-color: #3b66f5;
    color: #fff;
    padding: 24px 20px;
    text-align: center;
}
.ptec-why-us-banner h2 {
    font-size: clamp(20px,3vw,32px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ptec-why-us-body { padding: 60px 0; }
.ptec-why-us-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.ptec-why-us-img-wrap { display: flex; justify-content: center; align-items: center; }
/* Image on right: swap column order via CSS order */
.ptec-why-us-grid.img-right .ptec-why-us-img-wrap { order: 2; }
.ptec-why-us-grid.img-right .ptec-why-us-right    { order: 1; }
.ptec-why-us-mask {
    width: 340px; height: 340px;
    background-color: #00a3e0;
    background-size: cover;
    background-position: center;
    border-radius: 100px 40px 100px 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.ptec-why-points {
    list-style: none;
    display: flex; flex-direction: column; gap: 18px;
}
.ptec-why-points li {
    font-size: 14px; font-weight: 500; line-height: 1.6;
    color: #475569;
    display: flex; align-items: flex-start; gap: 14px;
}
.ptec-why-points li svg {
    width: 18px; height: 18px;
    stroke: #22c55e; stroke-width: 3;
    fill: none; flex-shrink: 0; margin-top: 2px;
}
.ptec-why-us-right { display: flex; flex-direction: column; gap: 0; }
.ptec-why-us-subhd {
    font-size: clamp(17px,2vw,22px);
    font-weight: 700; color: #1e3a8a;
    margin-bottom: 24px;
}
.ptec-why-closing {
    margin-top: 24px; font-size: 14px;
    line-height: 1.7; color: #64748b;
}
.ptec-why-us-sub-banner {
    background-color: #3b66f5;
    color: #fff;
    padding: 24px 20px;
    text-align: center;
}
.ptec-why-us-sub-banner h3 {
    font-size: clamp(18px,2.5vw,24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─────────────────────────────────────────────────
   § 5 — FEATURES
   ─────────────────────────────────────────────────*/
.ptec-features { padding: 0; background: #fff; }
.ptec-feat-banner {
    background-color: #3b66f5;
    color: #fff;
    padding: 22px 20px;
    text-align: center;
}
.ptec-feat-banner p {
    font-size: clamp(16px,2.2vw,22px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.ptec-feat-body { padding: 60px 0; }
.ptec-feat-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}
/* Image / card position toggle */
.ptec-feat-layout.img-right .ptec-feat-card-col  { order: 2; }
.ptec-feat-layout.img-right .ptec-feat-list-col  { order: 1; }
/* Custom uploaded image */
.ptec-feat-custom-img-wrap { width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.ptec-feat-custom-img { width: 100%; height: auto; display: block; }
/* Score report card */
.ptec-feat-card-col { display: flex; justify-content: center; }
.ptec-feat-score-card {
    width: 100%; max-width: 420px;
    border: 3px solid #1e293b;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}
.ptec-feat-sc-header {
    background: #0d5c75; color: #fff;
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; font-weight: 600;
}
.ptec-feat-sc-body { padding: 20px; position: relative; }
.ptec-feat-sc-badge {
    position: absolute; top: 20px; right: 20px;
    background: #9333ea; color: #fff;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px; line-height: 1;
}
.ptec-feat-sc-badge span { font-size: 8px; font-weight: 400; }
.ptec-feat-sc-profile { display: flex; gap: 14px; margin-bottom: 20px; align-items: center; }
.ptec-feat-sc-avatar {
    width: 68px; height: 82px; flex-shrink: 0;
    background: #e2e8f0; border-radius: 4px;
}
.ptec-feat-sc-name { font-size: 14px; font-weight: 600; color: #1e293b; margin-bottom: 6px; }
.ptec-feat-sc-guaranteed {
    background: #ef4444; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 2px;
    text-transform: uppercase; display: inline-block;
}
.ptec-feat-sc-circles {
    display: flex; justify-content: space-between; margin-bottom: 20px;
}
.ptec-feat-sc-circle {
    width: 48px; height: 48px;
    border: 2px solid #cbd5e1; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; line-height: 1.2; color: #1e293b;
}
.ptec-feat-sc-circle span { font-size: 7px; color: #64748b; font-weight: 400; }
.ptec-feat-sc-bars { display: flex; flex-direction: column; gap: 8px; }
.ptec-feat-sc-bar-row { font-size: 11px; font-weight: 600; color: #334155; }
.ptec-feat-sc-track {
    height: 8px; background: #f1f5f9;
    border-radius: 4px; margin-top: 3px; overflow: hidden;
}
.ptec-feat-sc-fill { height: 100%; border-radius: 4px; }
.ptec-feat-sc-footer {
    background: #ef4444; color: #fff;
    padding: 12px; text-align: center;
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
/* Features list (right column) */
.ptec-feat-list-hd {
    font-size: clamp(24px,3vw,32px);
    font-weight: 600; color: #2563eb; margin-bottom: 24px;
}
.ptec-feat-items {
    list-style: none;
    display: flex; flex-direction: column; gap: 18px;
    margin-bottom: 32px;
}
.ptec-feat-items li {
    font-size: 14px; font-weight: 500; line-height: 1.6;
    color: #475569;
    display: flex; align-items: flex-start; gap: 12px;
}
.ptec-feat-check-box {
    width: 20px; height: 20px; flex-shrink: 0;
    background: #e6f9ed; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.ptec-feat-check-box svg { width: 12px; height: 12px; }
/* Emoji / icon box — same dimensions as check-box, coloured background */
.ptec-feat-icon-box {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.ptec-feat-emoji { font-size: 15px; line-height: 1; }
.ptec-feat-cta {
    display: block; width: 100%;
    background: #3b82f6; color: #fff;
    padding: 14px; text-align: center;
    font-size: 14px; font-weight: 600;
    border-radius: 6px; text-decoration: none;
    transition: background .2s;
}
.ptec-feat-cta:hover { background: #2563eb; }

/* ─────────────────────────────────────────────────
   § 5b — HOW IT HELPS
   ─────────────────────────────────────────────────*/
.ptec-how-helps {
    background-color: #3b66f5;
    padding: 64px 40px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.ptec-how-inner {
    width: 100%; max-width: 1200px;
}
.ptec-how-helps h2 {
    font-size: clamp(20px,2.5vw,28px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 52px;
    line-height: 1.3;
}
.ptec-how-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    margin-bottom: 52px;
    text-align: left;
}
.ptec-how-item {
    display: flex; flex-direction: column; align-items: flex-start;
}
.ptec-how-icon-wrap { margin-bottom: 24px; }
.ptec-how-icon-circle {
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ptec-how-icon-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.ptec-how-icon-circle svg {
    width: 40px; height: 40px;
    stroke: #fff; stroke-width: 2;
    fill: none;
}
.ptec-how-item h3 {
    font-size: 18px; font-weight: 600;
    color: #fff; margin-bottom: 14px; line-height: 1.4;
}
.ptec-how-item p {
    font-size: 13px; line-height: 1.65;
    color: rgba(255,255,255,.85); font-weight: 400;
}
.ptec-how-ribbon {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 30px;
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.95);
    text-align: center; line-height: 1.5;
}

/* ─────────────────────────────────────────────────
   § 6 — WEEKEND CLASSES
   ─────────────────────────────────────────────────*/
.ptec-weekend {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ptec-purple), var(--ptec-purple-light));
}
.ptec-weekend-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.ptec-weekend-inner p {
    font-size: 22px; font-weight: 600; color: var(--ptec-white);
    max-width: 680px; line-height: 1.5;
}
.ptec-weekend-inner p em { color: var(--ptec-amber); font-style: normal; }

/* ─────────────────────────────────────────────────
   § 7 — WALL OF FAME (reuse ptenew cert cards)
   ─────────────────────────────────────────────────*/
.ptec-wof { padding: 80px 0; background: #FFC6E5; }
.ptec-wof-header { text-align: center; margin-bottom: 40px; position: relative; }
.ptec-wof-h2 { font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--ptec-navy); margin-bottom: 10px; }
.ptec-wof-sub { font-size: 16px; color: #555; }
.ptec-wof-star-l, .ptec-wof-star-r {
    position: absolute; top: 0; font-size: 28px; opacity: .6;
}
.ptec-wof-star-l { left: 0; }
.ptec-wof-star-r { right: 0; }

/* ─────────────────────────────────────────────────
   § 7b — SUCCESS STORIES
   ─────────────────────────────────────────────────*/
.ptec-ss { padding: 72px 0; background: #fff; }
.ptec-ss-hd { text-align: center; margin-bottom: 48px; }
.ptec-ss-hd h2 {
    font-size: clamp(22px,3vw,28px);
    font-weight: 800; color: #000;
    text-transform: uppercase; letter-spacing: .5px;
}
/* ─── Success stories: image grid ─── */
.ptec-ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.ptec-ss-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
    background: #f1f5f9;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ptec-ss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.ptec-ss-card img {
    width: 100%;
    height: auto;
    display: block;
}
/* Footnote */
.ptec-ss-footnote {
    font-size: 14px; color: #475569; line-height: 1.6;
    font-weight: 500; max-width: 900px; margin: 0 auto;
    text-align: center;
}
@media (max-width: 900px) {
    .ptec-ss-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
    .ptec-ss-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────
   § 8 — TESTIMONIALS
   ─────────────────────────────────────────────────*/
.ptec-testimonials { padding: 72px 0; background: #fff; }
/* Header */
.ptec-testi-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.ptec-testi-title h2 {
    font-size: clamp(24px,3vw,32px);
    font-weight: 800; color: #3b66f5;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 8px;
}
.ptec-testi-title p {
    font-size: 15px; font-weight: 700; color: #000;
}
.ptec-testi-google-badge { display: flex; align-items: center; gap: 14px; }
.ptec-testi-badge-text { text-align: right; }
.ptec-testi-reviews-count { font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 4px; }
.ptec-testi-rating-row { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.ptec-testi-score { font-size: 15px; font-weight: 700; color: #1e293b; }
.ptec-testi-stars-hd { display: flex; gap: 2px; }
.ptec-testi-stars-hd svg { width: 15px; height: 15px; }
.ptec-testi-google-logo {
    font-size: 38px; font-weight: 700;
    letter-spacing: -1.5px; line-height: 1;
    display: flex;
}
/* Slider */
.ptec-testi-slider {
    display: flex; align-items: center; gap: 12px; width: 100%;
}
.ptec-testi-nav {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: #cbd5e1; transition: color .2s;
}
.ptec-testi-nav:hover { color: #64748b; }
.ptec-testi-nav svg { width: 24px; height: 24px; }
.ptec-testi-track {
    flex: 1; display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
}
.ptec-testi-track::-webkit-scrollbar { display: none; }
/* Review card */
.ptec-review-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    background: #f4f4f5; border-radius: 8px;
    padding: 22px 18px;
    display: flex; flex-direction: column; min-height: 240px;
}
.ptec-review-top {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 14px;
}
.ptec-review-profile { display: flex; align-items: center; gap: 10px; }
.ptec-review-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; font-weight: 600;
}
.ptec-review-author { font-size: 13px; font-weight: 700; color: #000; display: block; }
.ptec-review-date { font-size: 11px; color: #94a3b8; display: block; margin-top: 1px; }
.ptec-review-g-icon { display: flex; align-items: center; }
.ptec-review-stars {
    display: flex; align-items: center; gap: 3px; margin-bottom: 12px;
}
.ptec-review-stars svg { width: 14px; height: 14px; }
.ptec-review-verified { width: 14px; height: 14px; margin-left: 4px; }
.ptec-review-text {
    font-size: 13px; line-height: 1.55; color: #334155; font-weight: 400;
    display: -webkit-box; -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; overflow: hidden;
    margin-top: auto;
}

/* ─────────────────────────────────────────────────
   § 9 — FAQ
   ─────────────────────────────────────────────────*/
.ptec-faq { padding: 72px 0; background: #fff; }
.ptec-faq-header { text-align: center; margin-bottom: 36px; }
.ptec-faq-header h2 {
    font-size: clamp(24px,3vw,32px);
    font-weight: 800; color: #3b66f5;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
}
.ptec-faq-header p { font-size: 15px; font-weight: 700; color: #000; }
.ptec-faq-wrap { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.ptec-faq-item { background: #f4f4f5; border-radius: 8px; overflow: hidden; }
.ptec-faq-q {
    width: 100%; background: none; border: none; outline: none;
    padding: 20px 24px; display: flex; justify-content: space-between;
    align-items: center; text-align: left; cursor: pointer;
}
.ptec-faq-question {
    font-size: 15px; font-weight: 600; color: #000;
    padding-right: 16px; line-height: 1.4;
}
.ptec-faq-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; transition: transform .22s ease;
}
.ptec-faq-icon svg { width: 22px; height: 22px; }
.ptec-faq-item.active .ptec-faq-icon { transform: rotate(180deg); }
.ptec-faq-a {
    max-height: 0; overflow: hidden;
    background: #f4f4f5;
    transition: max-height .25s ease-out;
}
.ptec-faq-text {
    padding: 0 24px 20px;
    font-size: 14px; line-height: 1.65; color: #475569; font-weight: 400;
}
.ptec-faq-item.active .ptec-faq-a { max-height: 360px; }

/* ─────────────────────────────────────────────────
   § 9b — PROMO IMAGE BANNER
   ─────────────────────────────────────────────────*/
.ptec-promo-image { padding: 48px 0; }
.ptec-promo-img-el {
    display: block; margin: 0 auto; width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* ─────────────────────────────────────────────────
   § 10 — CTA
   ─────────────────────────────────────────────────*/
.ptec-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ptec-navy), var(--ptec-purple));
    text-align: center;
}
.ptec-cta h2 { font-size: clamp(26px,3vw,42px); font-weight: 800; color: var(--ptec-white); margin-bottom: 16px; }
.ptec-cta p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ptec-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────
   § 10a — SERVICE LOCATIONS
   ─────────────────────────────────────────────────*/
.ptec-locations { padding: 48px 0; background: #fff; }
.ptec-loc-heading { margin-bottom: 32px; }
.ptec-loc-heading h2 {
    font-size: clamp(18px,2vw,22px);
    font-weight: 700; color: #1e293b;
}
.ptec-loc-table {
    border-top: 1px solid #e2e8f0;
}
.ptec-loc-row {
    display: flex; align-items: flex-start;
    border-bottom: 1px solid #e2e8f0;
    gap: 32px;
}
/* Category label (left column) */
.ptec-loc-cat {
    flex: 0 0 140px; min-width: 140px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; padding: 20px 0;
    background: none; border: none; cursor: pointer;
    font-size: 14px; font-weight: 700; color: #1e293b;
    text-align: left; font-family: inherit;
    align-self: flex-start; position: sticky; top: 0;
}
.ptec-loc-cat:hover { color: #3b66f5; }
.ptec-loc-chevron {
    width: 16px; height: 16px; flex-shrink: 0;
    color: #94a3b8;
    transition: transform .22s ease;
}
.ptec-loc-row.active .ptec-loc-chevron { transform: rotate(180deg); }
/* Links area (right column) */
.ptec-loc-links-wrap {
    flex: 1; overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}
.ptec-loc-links-inner {
    display: grid;
    gap: 6px 12px;
    font-size: 13px; color: #475569;
    padding: 12px 0 18px;
}
.ptec-loc-link {
    color: #475569; text-decoration: none;
    transition: color .15s;
    padding: 2px 0;
}
a.ptec-loc-link:hover { color: #3b66f5; text-decoration: underline; }
/* Mobile: stack category above links */
@media (max-width: 640px) {
    .ptec-loc-row { flex-direction: column; gap: 0; }
    .ptec-loc-cat { flex: none; width: 100%; border-bottom: 1px solid #f1f5f9; padding: 16px 0; }
    .ptec-loc-links-inner { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ─────────────────────────────────────────────────
   § 10b — BLUE TEXT BANNER
   ─────────────────────────────────────────────────*/
.ptec-blue-banner { color: #fff; }
.ptec-blue-banner-inner {
    max-width: 1000px; margin: 0 auto;
    padding: 52px 24px;
    text-align: center;
}
.ptec-blue-banner-title {
    font-size: clamp(24px,3vw,32px);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; margin-bottom: 24px;
}
.ptec-blue-banner-desc {
    font-size: clamp(16px,2vw,20px);
    font-weight: 500; line-height: 1.6;
    letter-spacing: .2px; word-spacing: 1px;
    max-width: 850px; margin: 0 auto;
}

/* ─────────────────────────────────────────────────
   § 11 — DISCLAIMER
   ─────────────────────────────────────────────────*/
.ptec-disclaimer {
    background-color: #5383ec;
    color: #fff;
    width: 100%;
}
.ptec-disc-inner {
    padding: 19px 0px 19px 150px;
    max-width: 1400px;
}
.ptec-disc-title {
    font-size: 24px; font-weight: 700;
    letter-spacing: .3px; margin-bottom: 26px;
}
.ptec-disc-policy-hd {
    font-weight: 700;
}
.ptec-disc-text {
    font-size: 20px; font-weight: 600;
    line-height: 1.45; letter-spacing: .1px;
    margin-bottom: 38px; max-width: 1000px;
}
.ptec-disc-cta {
    font-size: 20px; font-weight: 600;
    letter-spacing: .1px; max-width: 1000px;
}
@media (max-width: 768px) {
    .ptec-disc-inner { padding: 48px 24px; }
}

/* ─────────────────────────────────────────────────
   Responsive
   ─────────────────────────────────────────────────*/
@media (max-width: 968px) {
    .ptec-hero { padding: 40px 24px; }
    .ptec-hero-grid { grid-template-columns: 1fr; }
    .ptec-hero-img-side { display: none; }
    .ptec-hero-hd { text-align: left; }
    .ptec-hero-submit { width: 100%; align-self: stretch; }
}
@media (max-width: 1024px) {
    .ptec-plans-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ptec-pc.green { transform: none; }
    .ptec-how-grid { grid-template-columns: repeat(2,1fr); gap: 40px 32px; }
    .ptec-feat-layout { grid-template-columns: 1fr; }
    .ptec-review-card { flex: 0 0 calc(50% - 10px); }
    .ptec-testi-header { flex-direction: column; align-items: flex-start; }
    .ptec-testi-badge-text { text-align: left; }
    .ptec-testi-rating-row { justify-content: flex-start; }
}
@media (max-width: 768px) {
    .ptec-plans-grid { grid-template-columns: 1fr; }
    .ptec-why-us-grid { grid-template-columns: 1fr; }
    .ptec-weekend-inner { flex-direction: column; text-align: center; }
    .ptec-stat-box { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .ptec-ss-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
@media (max-width: 640px) {
    .ptec-how-helps { padding: 48px 20px; }
    .ptec-how-grid { grid-template-columns: 1fr; gap: 36px; }
    .ptec-how-item { align-items: center; text-align: center; }
    .ptec-how-icon-wrap { display: flex; justify-content: center; }
    .ptec-ss-grid { grid-template-columns: 1fr; }
    .ptec-review-card { flex: 0 0 calc(100% - 0px); }
    .ptec-testi-nav { display: none; }
}

/* ─────────────────────────────────────────────────
   § — RICH TEXT BLOCK (ptec_coaching_classes)
   ─────────────────────────────────────────────────*/
.ptec-cc-heading { margin-bottom: 20px; }

/* Prose styles for RichEditor HTML output */
.ptec-rte h2 { font-size: clamp(22px,2.8vw,32px); font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
.ptec-rte h3 { font-size: clamp(18px,2vw,24px); font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.ptec-rte p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.ptec-rte p:last-child { margin-bottom: 0; }
.ptec-rte strong { font-weight: 700; }
.ptec-rte em { font-style: italic; }
.ptec-rte u { text-decoration: underline; }
.ptec-rte s { text-decoration: line-through; }
.ptec-rte a { color: #3b66f5; text-decoration: underline; }
.ptec-rte a:hover { color: #2550d4; }
.ptec-rte ul, .ptec-rte ol { padding-left: 24px; margin-bottom: 14px; }
.ptec-rte ul { list-style: disc; }
.ptec-rte ol { list-style: decimal; }
.ptec-rte li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.ptec-rte blockquote {
    border-left: 4px solid #e2e8f0; padding: 12px 20px;
    margin: 16px 0; color: #64748b; font-style: italic;
}

@media (max-width: 768px) {
    .ptec-rte h2 { font-size: clamp(20px, 5vw, 26px); }
    .ptec-rte p, .ptec-rte li { font-size: 14px; }
}

/* ─────────────────────────────────────────────────
   § — VIDEO + CTA SECTION
   ─────────────────────────────────────────────────*/
.ptec-vcta { padding: 64px 0; }
.ptec-vcta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
/* 16:9 responsive iframe wrapper */
.ptec-vcta-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    background: #000;
}
.ptec-vcta-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.ptec-vcta-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    min-height: 240px;
    padding-top: 0 !important;
    background: #f1f5f9;
}
/* Right column */
.ptec-vcta-heading { margin-bottom: 12px; }
.ptec-vcta-heading p, .ptec-vcta-heading h2 {
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 600;
    line-height: 1.35;
    color: #4a77e5;
}
.ptec-vcta-sub {
    font-size: 18px;
    font-weight: 700;
    color: #d9381e;
    margin-bottom: 16px;
    line-height: 1.3;
}
.ptec-vcta-badge {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.ptec-vcta-content { margin-bottom: 4px; }
.ptec-vcta-content p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 14px; }
.ptec-vcta-content p:last-child { margin-bottom: 0; }
.ptec-vcta-btn-wrap { margin-top: 28px; text-align: center; }
.ptec-vcta-btn {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity .2s;
}
.ptec-vcta-btn:hover { opacity: .88; }
@media (max-width: 900px) {
    .ptec-vcta-grid { grid-template-columns: 1fr; gap: 32px; }
    .ptec-vcta-heading p, .ptec-vcta-heading h2 { font-size: clamp(16px, 4vw, 20px); }
}

/* ─────────────────────────────────────────────────
   § — VIDEO GRID SECTION
   ─────────────────────────────────────────────────*/
.ptec-vgrid { padding: 64px 0; }
.ptec-vgrid-heading {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}
.ptec-vgrid-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
/* Card */
.ptec-vgrid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
/* Thumbnail / iframe wrapper */
.ptec-vgrid-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    background: #111;
    cursor: pointer;
}
.ptec-vgrid-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.ptec-vgrid-thumb:hover img { transform: scale(1.04); }
.ptec-vgrid-thumb-empty {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c084fc 0%, #6366f1 100%);
}
/* YouTube-style play button */
.ptec-vgrid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.ptec-vgrid-play svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
    transition: transform .2s;
}
.ptec-vgrid-thumb:hover .ptec-vgrid-play svg { transform: scale(1.12); }
/* iframe injected by JS */
.ptec-vgrid-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Title */
.ptec-vgrid-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    line-height: 1.4;
}
/* Optional image with zoom */
.ptec-vgrid-img-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.ptec-vgrid-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.ptec-vgrid-img-wrap:hover .ptec-vgrid-img { transform: scale(1.07); }
/* Button */
.ptec-vgrid-btn {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    transition: opacity .2s, transform .2s;
    margin-top: auto;
}
.ptec-vgrid-btn:hover { opacity: .88; transform: translateY(-1px); }
@media (max-width: 640px) {
    .ptec-vgrid-row { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────────────
   § — FLIP CARDS
   ─────────────────────────────────────────────────*/
.ptec-flip { padding: 64px 0; }
.ptec-flip-heading {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}
.ptec-flip-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
/* 3D stage */
.ptec-flip-perspective {
    perspective: 1000px;
}
.ptec-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
}
.ptec-flip-perspective:hover .ptec-flip-inner {
    transform: rotateY(180deg);
}
/* Shared face styles */
.ptec-flip-face {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px 28px;
    overflow: hidden;
    color: #fff;
}
.ptec-flip-front { z-index: 2; transform: rotateY(0deg); }
.ptec-flip-back  { transform: rotateY(180deg); justify-content: flex-start; padding-top: 40px; }
/* Dark overlay when a background image is set — keeps text readable */
.ptec-flip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    border-radius: inherit;
}
/* Content sits above the overlay */
.ptec-flip-body {
    position: relative;
    z-index: 1;
    width: 100%;
}
/* Override ptec-rte prose colours for card content */
.ptec-flip-face.ptec-rte h2,
.ptec-flip-face.ptec-rte h3 { color: #fff; }
.ptec-flip-face.ptec-rte p  { color: rgba(255,255,255,.92); font-size: 14px; }
.ptec-flip-face.ptec-rte ul,
.ptec-flip-face.ptec-rte ol { color: rgba(255,255,255,.92); }
.ptec-flip-face.ptec-rte li { font-size: 14px; margin-bottom: 10px; }
.ptec-flip-face.ptec-rte a  { color: #fff; }
@media (max-width: 640px) {
    .ptec-flip-row { grid-template-columns: 1fr; }
    .ptec-flip-perspective { height: 340px !important; }
}
