/* ==========================================================================
   Giáp Phạm — Elementor Widgets CSS
   https://giappham.com
   ========================================================================== */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─── */
.gp-widget {
    --gp-white:   #ffffff;
    --gp-off:     #fafaf8;
    --gp-light:   #f4f3ef;
    --gp-border:  #e8e4db;
    --gp-muted:   #a89f91;
    --gp-text:    #1a1a1a;
    --gp-sub:     #5a5550;
    --gp-gold:    #c8a84b;
    --gp-gold2:   #e2c97e;
    --gp-gold3:   #f0dfa0;
    --gp-goldbg:  rgba(200,168,75,0.08);
    --gp-goldbd:  rgba(200,168,75,0.25);
    --gp-shadow:  0 2px 40px rgba(0,0,0,0.06);
    --gp-shadow2: 0 8px 60px rgba(0,0,0,0.10);

    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gp-text);
    -webkit-font-smoothing: antialiased;
}

/* ─── SHARED TYPOGRAPHY ─── */
.gp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gp-gold);
    margin-bottom: 16px;
}
.gp-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gp-gold);
}
.gp-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--gp-text);
    margin-bottom: 16px;
}
.gp-heading em { font-style: italic; color: var(--gp-gold); }
.gp-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gp-sub);
    max-width: 520px;
}

/* ─── SHARED BUTTONS ─── */
.gp-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gp-gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 6px 28px rgba(200,168,75,.35);
    border: none;
    cursor: pointer;
}
.gp-btn-gold:hover {
    background: var(--gp-gold2);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(200,168,75,.45);
    color: #fff;
}
.gp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gp-text);
    border-bottom: 1.5px solid var(--gp-border);
    padding-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
}
.gp-btn-ghost:hover { color: var(--gp-gold); border-color: var(--gp-gold); }

/* ─── SCROLL REVEAL ─── */
.gp-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}
.gp-reveal.gp-on { opacity: 1; transform: translateY(0); }
.gp-reveal-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .8s ease, transform .8s ease;
}
.gp-reveal-l.gp-on { opacity: 1; transform: translateX(0); }
.gp-reveal-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.gp-reveal-r.gp-on { opacity: 1; transform: translateX(0); }

/* ─── CUSTOM CURSOR ─── */
#gp-cur {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--gp-gold, #c8a84b);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .25s, height .25s;
}
#gp-cur-ring {
    position: fixed;
    width: 38px; height: 38px;
    border: 1.5px solid var(--gp-gold, #c8a84b);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s, opacity .3s;
    opacity: .5;
}
#gp-cur.gp-big  { width: 16px; height: 16px; }
#gp-cur-ring.gp-big { width: 60px; height: 60px; opacity: .2; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f4f3ef; }
::-webkit-scrollbar-thumb { background: #c8a84b; border-radius: 2px; }

/* =========================================================================
   HERO WIDGET
   ========================================================================= */
.gp-hero {
    min-height: 100vh;
    background: var(--gp-off);
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
}
.gp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, var(--gp-border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .6;
    pointer-events: none;
}
.gp-hero::after {
    content: '';
    position: absolute; top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gp-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 80px 80px;
    position: relative;
    z-index: 2;
}
.gp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gp-goldbg);
    border: 1px solid var(--gp-goldbd);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    width: fit-content;
}
.gp-hero-eyebrow-dot { width: 6px; height: 6px; background: var(--gp-gold); border-radius: 50%; }
.gp-hero-eyebrow span {
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gp-gold);
}
.gp-hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 5.5vw, 82px);
    font-weight: 400;
    line-height: 1.07;
    color: var(--gp-text);
    margin-bottom: 12px;
    animation: gpSlideUp .9s ease both;
}
.gp-hero-name em { font-style: italic; color: var(--gp-gold); }
.gp-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gp-muted);
    margin-bottom: 36px;
    animation: gpSlideUp .9s .12s ease both;
}
.gp-hero-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gp-sub);
    max-width: 430px;
    margin-bottom: 48px;
    animation: gpSlideUp .9s .24s ease both;
}
.gp-hero-desc strong { color: var(--gp-text); font-weight: 600; }
.gp-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: gpSlideUp .9s .36s ease both;
}
.gp-hero-metrics {
    display: flex;
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--gp-border);
    padding-top: 40px;
    animation: gpSlideUp .9s .48s ease both;
}
.gp-metric {
    flex: 1;
    padding-right: 32px;
    border-right: 1px solid var(--gp-border);
    margin-right: 32px;
}
.gp-metric:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.gp-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--gp-gold);
    line-height: 1;
}
.gp-metric-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gp-muted);
    margin-top: 6px;
}
.gp-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 60px 0;
}
.gp-hero-card {
    background: #fff;
    border: 1px solid var(--gp-border);
    border-radius: 16px;
    box-shadow: var(--gp-shadow2);
    width: 320px;
    padding: 40px 36px;
    position: relative;
    z-index: 2;
    animation: gpSlideUp 1s .2s ease both;
}
.gp-hero-card::before {
    content: '';
    position: absolute;
    top: -2px; left: 32px; right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    border-radius: 0 0 3px 3px;
}
.gp-hcard-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gp-gold) 0%, var(--gp-gold2) 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.gp-hcard-avatar svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.5; }
.gp-hcard-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.gp-hcard-role { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gp-gold); margin-bottom: 24px; }
.gp-hcard-divider { height: 1px; background: var(--gp-border); margin-bottom: 20px; }
.gp-hcard-stat { display: flex; justify-content: space-between; margin-bottom: 14px; align-items: center; }
.gp-hcard-stat-label { font-size: 12px; color: var(--gp-muted); }
.gp-hcard-stat-val {
    font-size: 12px; font-weight: 600; color: var(--gp-text);
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    padding: 3px 10px; border-radius: 100px;
}
.gp-hcard-badge {
    margin-top: 20px; padding: 14px 18px; border-radius: 10px;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; gap: 12px;
}
.gp-hcard-badge-icon {
    width: 36px; height: 36px; background: var(--gp-gold);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gp-hcard-badge-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }
.gp-hcard-badge-text { font-size: 12px; line-height: 1.5; color: var(--gp-sub); }
.gp-hcard-badge-text strong { color: var(--gp-gold); font-weight: 600; }
.gp-float-card {
    position: absolute;
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 12px; padding: 12px 18px;
    box-shadow: var(--gp-shadow2); z-index: 3;
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 500;
    animation: gpFloat 4s ease-in-out infinite;
}
.gp-float-card.gp-fc1 { top: 22%; left: 2%; animation-delay: 0s; }
.gp-float-card.gp-fc2 { bottom: 20%; right: 0%; animation-delay: 1.5s; }
.gp-float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gp-gold); }

/* =========================================================================
   SERVICES WIDGET
   ========================================================================= */
.gp-services { padding: 120px 80px; background: var(--gp-off); }
.gp-services-top {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: end; margin-bottom: 64px;
}
.gp-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gp-svc-card {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 12px; padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: all .35s ease;
}
.gp-svc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.gp-svc-card:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow2); border-color: var(--gp-goldbd); }
.gp-svc-card:hover::after { transform: scaleX(1); }
.gp-svc-num {
    font-family: 'Playfair Display', serif; font-size: 13px;
    font-weight: 400; font-style: italic; color: var(--gp-gold);
    margin-bottom: 20px; opacity: .7;
}
.gp-svc-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: background .3s;
}
.gp-svc-card:hover .gp-svc-icon { background: var(--gp-gold); }
.gp-svc-icon svg { width: 22px; height: 22px; stroke: var(--gp-gold); fill: none; stroke-width: 1.6; transition: stroke .3s; }
.gp-svc-card:hover .gp-svc-icon svg { stroke: #fff; }
.gp-svc-name { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--gp-text); }
.gp-svc-desc { font-size: 13px; line-height: 1.8; color: var(--gp-sub); margin-bottom: 24px; }
.gp-svc-link {
    font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gp-gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; transition: gap .3s;
}
.gp-svc-card:hover .gp-svc-link { gap: 10px; }

/* =========================================================================
   PRICING WIDGET
   ========================================================================= */
.gp-pricing { padding: 120px 80px; background: var(--gp-white); }
.gp-pricing-top { text-align: center; margin-bottom: 64px; }
.gp-pricing-top .gp-label { justify-content: center; }
.gp-pricing-top .gp-subtext { margin: 0 auto; text-align: center; }
.gp-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.gp-price-card {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 14px; padding: 44px 36px;
    position: relative; transition: all .35s ease;
}
.gp-price-card:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow2); }
.gp-price-card.gp-featured {
    border-color: var(--gp-gold); border-width: 2px;
    box-shadow: 0 8px 48px rgba(200,168,75,.18);
}
.gp-badge-pop {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; font-size: 10px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    padding: 5px 18px; border-radius: 100px;
    box-shadow: 0 4px 16px rgba(200,168,75,.4);
}
.gp-price-tier { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gp-muted); margin-bottom: 20px; }
.gp-price-amount {
    font-family: 'Playfair Display', serif; font-size: 50px;
    font-weight: 400; color: var(--gp-text); line-height: 1; margin-bottom: 8px;
}
.gp-price-amount sup { font-size: 20px; color: var(--gp-gold); vertical-align: super; }
.gp-price-time { font-size: 12px; color: var(--gp-muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gp-border); }
.gp-price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; padding: 0; }
.gp-price-features li {
    font-size: 13px; color: var(--gp-sub);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.gp-price-features li::before {
    content: '';
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
    background-color: var(--gp-goldbg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23c8a84b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
    border: 1px solid var(--gp-goldbd);
}
.gp-price-cta {
    display: block; text-align: center; text-decoration: none;
    padding: 13px; border-radius: 6px;
    font-family: 'Montserrat', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    transition: all .3s; border: 1.5px solid var(--gp-border); color: var(--gp-text);
}
.gp-price-card.gp-featured .gp-price-cta {
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; border-color: transparent;
    box-shadow: 0 4px 20px rgba(200,168,75,.35);
}
.gp-price-card:not(.gp-featured) .gp-price-cta:hover { border-color: var(--gp-gold); color: var(--gp-gold); background: var(--gp-goldbg); }
.gp-price-card.gp-featured .gp-price-cta:hover { box-shadow: 0 8px 30px rgba(200,168,75,.5); transform: translateY(-1px); }

/* =========================================================================
   SKILLS WIDGET
   ========================================================================= */
.gp-skills { padding: 120px 80px; background: var(--gp-off); }
.gp-skills-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.gp-skill-row { margin-bottom: 28px; }
.gp-skill-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.gp-skill-name { font-size: 13px; font-weight: 500; color: var(--gp-text); }
.gp-skill-pct { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gp-gold); }
.gp-skill-track { height: 3px; background: var(--gp-border); border-radius: 3px; overflow: visible; position: relative; }
.gp-skill-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    border-radius: 3px; width: 0;
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
    position: relative;
}
.gp-skill-bar.gp-go { width: var(--gp-w); }
.gp-skill-bar::after {
    content: ''; position: absolute; right: -4px; top: 50%;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gp-gold);
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(200,168,75,.2);
}
.gp-kpi-cards { display: flex; flex-direction: column; gap: 20px; }
.gp-kpi {
    background: #fff; border: 1px solid var(--gp-border); border-radius: 12px;
    padding: 28px 32px; display: flex; align-items: center; gap: 24px;
    transition: all .3s;
}
.gp-kpi:hover { border-color: var(--gp-goldbd); box-shadow: 0 4px 24px rgba(200,168,75,.1); transform: translateX(4px); }
.gp-kpi-num {
    font-family: 'Playfair Display', serif; font-size: 52px;
    font-weight: 400; color: var(--gp-gold); line-height: 1; flex-shrink: 0; min-width: 80px;
}
.gp-kpi-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.gp-kpi-text { font-size: 13px; line-height: 1.6; color: var(--gp-sub); }

/* =========================================================================
   PROCESS WIDGET
   ========================================================================= */
.gp-process { padding: 120px 80px; background: var(--gp-white); }
.gp-process-wrap {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 0; position: relative; margin-top: 64px;
}
.gp-process-line {
    position: absolute; top: 32px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gp-goldbd) 20%, var(--gp-goldbd) 80%, transparent);
}
.gp-p-step { padding: 0 16px; text-align: center; }
.gp-p-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--gp-border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; position: relative; z-index: 1;
    font-family: 'Playfair Display', serif; font-size: 18px;
    font-weight: 400; color: var(--gp-gold); transition: all .3s;
}
.gp-p-step:hover .gp-p-circle {
    background: linear-gradient(135deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 24px rgba(200,168,75,.35);
}
.gp-p-title { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--gp-text); }
.gp-p-desc { font-size: 12px; line-height: 1.7; color: var(--gp-muted); }

/* =========================================================================
   TESTIMONIALS WIDGET
   ========================================================================= */
.gp-testimonials { padding: 120px 80px; background: var(--gp-light); }
.gp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.gp-testi-card {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 12px; padding: 32px; transition: all .35s;
}
.gp-testi-card:hover { border-color: var(--gp-goldbd); box-shadow: 0 6px 32px rgba(200,168,75,.1); transform: translateY(-4px); }
.gp-testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.gp-testi-stars span { color: var(--gp-gold); font-size: 14px; }
.gp-testi-text { font-size: 13px; line-height: 1.8; color: var(--gp-sub); margin-bottom: 24px; font-style: italic; }
.gp-testi-author { display: flex; align-items: center; gap: 12px; }
.gp-testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gp-gold), var(--gp-gold2));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 16px; color: #fff; font-weight: 400;
    flex-shrink: 0;
}
.gp-testi-name { font-size: 13px; font-weight: 600; }
.gp-testi-company { font-size: 11px; color: var(--gp-muted); letter-spacing: .05em; }

/* =========================================================================
   CONTACT WIDGET
   ========================================================================= */
.gp-contact { padding: 120px 80px; background: var(--gp-white); }
.gp-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.gp-contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.gp-ci-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 10px; padding: 18px 22px; transition: all .3s;
}
.gp-ci-item:hover { border-color: var(--gp-goldbd); box-shadow: 0 4px 20px rgba(200,168,75,.1); }
.gp-ci-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gp-ci-icon svg { width: 16px; height: 16px; stroke: var(--gp-gold); fill: none; stroke-width: 1.8; }
.gp-ci-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gp-muted); margin-bottom: 3px; }
.gp-ci-val { font-size: 14px; color: var(--gp-text); font-weight: 500; }
.gp-form-wrap {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 16px; padding: 48px; box-shadow: var(--gp-shadow);
}
.gp-form-wrap h3 {
    font-family: 'Playfair Display', serif; font-size: 28px;
    font-weight: 400; margin-bottom: 32px; color: var(--gp-text);
}
.gp-fg { margin-bottom: 20px; }
.gp-fg label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gp-muted); margin-bottom: 8px;
}
.gp-fg input, .gp-fg textarea, .gp-fg select {
    width: 100%; background: var(--gp-off);
    border: 1.5px solid var(--gp-border); border-radius: 8px;
    padding: 13px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
    color: var(--gp-text); outline: none;
    transition: border-color .3s, box-shadow .3s; resize: none;
}
.gp-fg input:focus, .gp-fg textarea:focus {
    border-color: var(--gp-gold);
    box-shadow: 0 0 0 4px rgba(200,168,75,.1);
    background: #fff;
}
.gp-fg textarea { height: 110px; }
.gp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gp-submit-btn {
    width: 100%; padding: 15px; border-radius: 8px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    transition: all .3s; box-shadow: 0 6px 24px rgba(200,168,75,.35);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.gp-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,168,75,.45); }
.gp-submit-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* =========================================================================
   FOOTER WIDGET
   ========================================================================= */
.gp-footer { background: #1a1a1a; color: #fff; padding: 60px 80px 40px; }
.gp-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.gp-footer-logo {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 20px; color: #fff; margin-bottom: 14px;
}
.gp-footer-logo span { color: var(--gp-gold); }
.gp-footer-tagline { font-size: 13px; line-height: 1.7; color: #888; max-width: 260px; margin-bottom: 24px; }
.gp-footer-social { display: flex; gap: 10px; }
.gp-fs-btn {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 13px; font-weight: 600; transition: all .3s;
}
.gp-fs-btn:hover { background: var(--gp-gold); border-color: var(--gp-gold); color: #fff; }
.gp-footer-col h4 {
    font-size: 11px; font-weight: 600; letter-spacing: .15em;
    text-transform: uppercase; color: var(--gp-gold); margin-bottom: 20px;
}
.gp-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gp-footer-col a { font-size: 13px; color: #888; text-decoration: none; transition: color .3s; }
.gp-footer-col a:hover { color: #fff; }
.gp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.gp-footer-copy { font-size: 12px; color: #555; }
.gp-footer-legal { display: flex; gap: 24px; }
.gp-footer-legal a { font-size: 12px; color: #555; text-decoration: none; transition: color .3s; }
.gp-footer-legal a:hover { color: var(--gp-gold); }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes gpSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gpFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .gp-hero { grid-template-columns: 1fr; }
    .gp-hero-right { display: none; }
    .gp-hero-left { padding: 140px 40px 80px; }
    .gp-services-top { grid-template-columns: 1fr; gap: 24px; }
    .gp-services-grid { grid-template-columns: repeat(2,1fr); }
    .gp-pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .gp-skills-wrap { grid-template-columns: 1fr; }
    .gp-process-wrap { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gp-process-line { display: none; }
    .gp-testi-grid { grid-template-columns: 1fr 1fr; }
    .gp-contact-wrap { grid-template-columns: 1fr; }
    .gp-footer-top { grid-template-columns: 1fr 1fr; }
    .gp-services, .gp-pricing, .gp-skills, .gp-process,
    .gp-testimonials, .gp-contact { padding: 80px 40px; }
    .gp-footer { padding: 60px 40px 40px; }
}
@media (max-width: 600px) {
    .gp-services-grid { grid-template-columns: 1fr; }
    .gp-testi-grid { grid-template-columns: 1fr; }
    .gp-process-wrap { grid-template-columns: 1fr; }
    .gp-form-row { grid-template-columns: 1fr; }
    .gp-footer-top { grid-template-columns: 1fr; }
    .gp-services, .gp-pricing, .gp-skills, .gp-process,
    .gp-testimonials, .gp-contact { padding: 64px 24px; }
    .gp-hero-left { padding: 120px 24px 60px; }
    .gp-footer { padding: 48px 24px 32px; }
}

/* =========================================================================
   PAGE HERO WIDGET
   ========================================================================= */
.gp-page-hero {
    background: var(--gp-off);
    padding: 120px 80px 80px;
    position: relative;
    overflow: hidden;
}
.gp-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, var(--gp-border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .5;
    pointer-events: none;
}
.gp-page-hero::after {
    content: '';
    position: absolute; top: -20%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,168,75,.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.gp-page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.gp-breadcrumb { font-size: 12px; color: var(--gp-muted); margin-bottom: 20px; }
.gp-breadcrumb a { color: var(--gp-muted); text-decoration: none; transition: color .3s; }
.gp-breadcrumb a:hover { color: var(--gp-gold); }
.gp-bc-sep { margin: 0 6px; }
.gp-page-label {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gp-gold);
    margin-bottom: 16px;
}
.gp-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400; line-height: 1.08;
    color: var(--gp-text); margin-bottom: 20px;
}
.gp-page-title em { font-style: italic; color: var(--gp-gold); }
.gp-page-desc { font-size: 15px; line-height: 1.85; color: var(--gp-sub); max-width: 560px; margin-bottom: 36px; }
.gp-hero-btns { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.gp-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.gp-pill {
    font-size: 12px; font-weight: 500; color: var(--gp-sub);
    background: #fff; border: 1px solid var(--gp-border);
    padding: 6px 14px; border-radius: 100px;
}
.gp-hero-stats {
    display: flex; gap: 40px; margin-top: 40px;
    border-top: 1px solid var(--gp-border); padding-top: 32px;
    flex-wrap: wrap;
}
.gp-stat-item {}
.gp-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--gp-gold); line-height: 1; }
.gp-stat-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gp-muted); margin-top: 4px; }

/* =========================================================================
   FEATURES GRID WIDGET
   ========================================================================= */
.gp-features { padding: 96px 80px; }
.gp-bg-off   { background: var(--gp-off); }
.gp-bg-light { background: var(--gp-light); }
.gp-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gp-feat-card {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 12px; padding: 32px 28px;
    transition: all .35s ease;
}
.gp-feat-card:hover { transform: translateY(-5px); box-shadow: var(--gp-shadow2); border-color: var(--gp-goldbd); }
.gp-feat-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: background .3s;
}
.gp-feat-card:hover .gp-feat-icon { background: var(--gp-gold); }
.gp-feat-icon svg { width: 22px; height: 22px; stroke: var(--gp-gold); fill: none; stroke-width: 1.6; transition: stroke .3s; }
.gp-feat-card:hover .gp-feat-icon svg { stroke: #fff; }
.gp-feat-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: var(--gp-text); }
.gp-feat-text  { font-size: 13px; line-height: 1.8; color: var(--gp-sub); }

/* =========================================================================
   FAQ ACCORDION WIDGET
   ========================================================================= */
.gp-faq { padding: 96px 80px; }
.gp-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.gp-faq-two-col { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.gp-faq-item { border-bottom: 1px solid var(--gp-border); }
.gp-faq-item:first-child { border-top: 1px solid var(--gp-border); }
.gp-faq-two-col .gp-faq-item:nth-child(odd):first-child,
.gp-faq-two-col .gp-faq-item:nth-child(even):first-child { border-top: 1px solid var(--gp-border); }
.gp-faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 0; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--gp-text);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color .3s;
}
.gp-faq-q:hover { color: var(--gp-gold); }
.gp-faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--gp-border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all .3s; }
.gp-faq-item.gp-open .gp-faq-icon { background: var(--gp-gold); border-color: var(--gp-gold); color: #fff; transform: rotate(45deg); }
.gp-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.gp-faq-item.gp-open .gp-faq-a { max-height: 400px; }
.gp-faq-a-inner { padding: 0 0 20px; font-size: 13px; line-height: 1.8; color: var(--gp-sub); }

/* =========================================================================
   CTA BANNER WIDGET
   ========================================================================= */
.gp-cta-banner {
    margin: 0 80px 60px;
    background: linear-gradient(135deg, var(--gp-off) 0%, #fff 100%);
    border: 1px solid var(--gp-border);
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    position: relative; overflow: hidden;
}
.gp-cta-banner::before {
    content: '';
    position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,168,75,.06) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.gp-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400; line-height: 1.2; color: var(--gp-text);
}
.gp-cta-heading em { font-style: italic; color: var(--gp-gold); }
.gp-cta-desc { font-size: 15px; color: var(--gp-sub); max-width: 480px; }

/* =========================================================================
   WEBSITE TYPES (TABS) WIDGET
   ========================================================================= */
.gp-website-types { padding: 96px 80px; background: #fff; }
.gp-tabs { display: flex; gap: 0; margin-bottom: 0; border-bottom: 1px solid var(--gp-border); }
.gp-tab {
    padding: 12px 24px; background: none; border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--gp-muted);
    cursor: pointer; transition: all .3s; border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.gp-tab:hover { color: var(--gp-text); }
.gp-tab-active { color: var(--gp-text); border-bottom-color: var(--gp-gold); }
.gp-tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 48px 0; }
.gp-tab-panel-active { display: grid; }
.gp-tab-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.gp-tab-title em { font-style: italic; color: var(--gp-gold); }
.gp-tab-desc { font-size: 14px; line-height: 1.8; color: var(--gp-sub); margin-bottom: 24px; }
.gp-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.gp-tag { font-size: 12px; font-weight: 500; color: var(--gp-sub); background: var(--gp-off); border: 1px solid var(--gp-border); padding: 5px 14px; border-radius: 100px; }
.gp-tab-img { background: var(--gp-off); border: 1px solid var(--gp-border); border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.gp-tab-img-inner { text-align: center; }
.gp-tab-img-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.gp-tab-img-label { font-size: 12px; color: var(--gp-muted); }

/* =========================================================================
   NHA KHOA — WHY SECTION WIDGET
   ========================================================================= */
.gp-nha-khoa-why { padding: 96px 80px; background: #fff; }
.gp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gp-nk-points { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.gp-nk-point { display: flex; gap: 14px; align-items: flex-start; }
.gp-nk-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gp-gold); font-size: 13px;
}
.gp-nk-point strong { font-size: 14px; display: block; margin-bottom: 4px; color: var(--gp-text); }
.gp-nk-point span   { font-size: 13px; color: var(--gp-sub); }
.gp-nk-card {
    background: var(--gp-off); border: 1px solid var(--gp-border);
    border-radius: 16px; padding: 36px;
}
.gp-nk-quote {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-style: italic; line-height: 1.7;
    color: var(--gp-sub); margin-bottom: 24px;
}
.gp-nk-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px; border-top: 1px solid var(--gp-border); margin-bottom: 24px;
}
.gp-nk-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gp-nk-metric {
    text-align: center; background: #fff;
    border: 1px solid var(--gp-border); border-radius: 10px; padding: 20px;
}
.gp-nk-metric-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gp-gold); }
.gp-nk-metric-label { font-size: 11px; color: var(--gp-muted); margin-top: 4px; }

/* =========================================================================
   PORTFOLIO GRID WIDGET
   ========================================================================= */
.gp-portfolio { padding: 96px 80px; background: #fff; }
.gp-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.gp-portfolio-item {
    border: 1px solid var(--gp-border); border-radius: 12px;
    overflow: hidden; transition: all .35s; text-decoration: none; color: inherit; display: block;
}
.gp-portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--gp-shadow2); border-color: var(--gp-goldbd); }
.gp-portfolio-thumb {
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
}
.gp-portfolio-thumb-inner { font-size: 48px; }
.gp-portfolio-info { padding: 16px 20px; background: #fff; }
.gp-portfolio-name { font-size: 14px; font-weight: 600; color: var(--gp-text); margin-bottom: 4px; }
.gp-portfolio-type { font-size: 12px; color: var(--gp-muted); }

/* =========================================================================
   COURSE HERO WIDGET
   ========================================================================= */
.gp-course-hero {
    min-height: 100vh;
    background: var(--gp-off);
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden; position: relative;
}
.gp-course-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, var(--gp-border) 1px, transparent 1px);
    background-size: 32px 32px; opacity: .5; pointer-events: none;
}
.gp-course-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 64px 80px 80px; position: relative; z-index: 2;
}
.gp-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    padding: 7px 16px; border-radius: 100px; margin-bottom: 32px; width: fit-content;
}
.gp-hero-badge-dot { width: 6px; height: 6px; background: var(--gp-gold); border-radius: 50%; }
.gp-hero-badge span:last-child { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gp-gold); }
.gp-course-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 4.5vw, 70px);
    font-weight: 400; line-height: 1.1; color: var(--gp-text); margin-bottom: 12px;
    animation: gpSlideUp .9s ease both;
}
.gp-course-h1 em { font-style: italic; color: var(--gp-gold); }
.gp-course-tagline {
    font-family: 'Montserrat', sans-serif; font-weight: 300;
    font-size: clamp(13px, 1.2vw, 16px);
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gp-muted); margin-bottom: 24px;
}
.gp-hero-desc { font-size: 15px; line-height: 1.85; color: var(--gp-sub); max-width: 460px; margin-bottom: 40px; }
.gp-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 0; }
.gp-arr { display: inline-block; transition: transform .3s; }
.gp-btn-gold:hover .gp-arr, .gp-btn-ghost:hover .gp-arr { transform: translateX(4px); }
.gp-course-metrics {
    display: flex; gap: 32px; margin-top: 48px;
    border-top: 1px solid var(--gp-border); padding-top: 32px; flex-wrap: wrap;
}
.gp-hm { }
.gp-hm-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--gp-gold); line-height: 1; }
.gp-hm-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gp-muted); margin-top: 4px; }

.gp-course-hero-right {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 120px 60px 60px 0;
}
.gp-course-card {
    background: #fff; border: 1px solid var(--gp-border); border-radius: 16px;
    box-shadow: var(--gp-shadow2); width: 340px; overflow: hidden;
    animation: gpSlideUp 1s .2s ease both; position: relative; z-index: 2;
}
.gp-course-card-thumb {
    background: linear-gradient(135deg, var(--gp-text) 0%, #2d2820 100%);
    padding: 32px; display: flex; flex-direction: column; gap: 8px;
    position: relative;
}
.gp-thumb-icon { font-size: 40px; }
.gp-thumb-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gp-gold); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.gp-thumb-students { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.gp-course-card-body { padding: 28px; }
.gp-cc-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; margin-bottom: 16px; line-height: 1.4; }
.gp-cc-title em { font-style: italic; color: var(--gp-gold); }
.gp-cc-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gp-border); }
.gp-cc-inc { font-size: 12px; color: var(--gp-sub); display: flex; align-items: center; gap: 8px; }
.gp-cc-inc::before { content: '✓'; color: var(--gp-gold); font-weight: 700; }
.gp-cc-price-row { display: flex; justify-content: space-between; align-items: center; }
.gp-cc-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--gp-text); }
.gp-cc-price sup { font-size: 14px; color: var(--gp-gold); }
.gp-cc-price-old { font-size: 12px; color: var(--gp-muted); text-decoration: line-through; margin-left: 6px; }
.gp-cc-enroll {
    display: inline-flex; align-items: center;
    background: var(--gp-gold); color: #fff; text-decoration: none;
    padding: 10px 20px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    transition: all .3s;
}
.gp-cc-enroll:hover { background: var(--gp-gold2); color: #fff; transform: translateY(-1px); }

/* =========================================================================
   COURSE CURRICULUM WIDGET
   ========================================================================= */
.gp-curriculum { padding: 96px 80px; background: #fff; }
.gp-curriculum-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 40px; margin-top: 48px; }
.gp-curr-nav { display: flex; flex-direction: column; gap: 4px; }
.gp-cn-item {
    display: flex; align-items: center; gap: 10px;
    text-align: left; background: none; border: none;
    padding: 10px 14px; border-radius: 8px; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 500; color: var(--gp-sub);
    transition: all .2s; position: relative;
}
.gp-cn-item:hover { background: var(--gp-off); color: var(--gp-text); }
.gp-cn-active { background: var(--gp-goldbg) !important; color: var(--gp-gold) !important; }
.gp-cn-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gp-border); flex-shrink: 0; transition: background .2s; }
.gp-cn-active .gp-cn-dot { background: var(--gp-gold); }
.gp-curr-modules { display: flex; flex-direction: column; gap: 0; }
.gp-module { border: 1px solid var(--gp-border); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.gp-module-header {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; cursor: pointer; transition: background .2s;
}
.gp-module-header:hover { background: var(--gp-off); }
.gp-module-open > .gp-module-header { background: var(--gp-goldbg); }
.gp-module-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gp-goldbg); border: 1px solid var(--gp-goldbd);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gp-gold); flex-shrink: 0;
}
.gp-module-open > .gp-module-header .gp-module-num { background: var(--gp-gold); color: #fff; border-color: var(--gp-gold); }
.gp-module-info { flex: 1; }
.gp-module-title { font-size: 14px; font-weight: 600; color: var(--gp-text); }
.gp-module-meta { font-size: 12px; color: var(--gp-muted); margin-top: 2px; }
.gp-module-toggle { font-size: 20px; color: var(--gp-muted); transition: transform .3s; flex-shrink: 0; }
.gp-module-open > .gp-module-header .gp-module-toggle { transform: rotate(45deg); color: var(--gp-gold); }
.gp-module-lessons { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.gp-module-open .gp-module-lessons { max-height: 2000px; }
.gp-lesson-list { padding: 0 24px 16px; }
.gp-lesson {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--gp-light);
}
.gp-lesson:last-child { border-bottom: none; }
.gp-lesson-icon { font-size: 14px; flex-shrink: 0; width: 20px; text-align: center; }
.gp-lesson-title { flex: 1; font-size: 13px; color: var(--gp-sub); }
.gp-lesson-free {
    font-size: 10px; font-weight: 600; letter-spacing: .08em;
    color: #fff; background: var(--gp-gold); padding: 2px 8px; border-radius: 100px; flex-shrink: 0;
}
.gp-lesson-dur { font-size: 11px; color: var(--gp-muted); flex-shrink: 0; }

/* =========================================================================
   COURSE PRICING WIDGET
   ========================================================================= */
.gp-course-pricing { padding: 0; }
.gp-course-pricing-cards {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
    max-width: 1000px; margin: 0 auto;
    padding: 0 80px 60px;
}
.gp-pc {
    background: #fff; border: 1px solid var(--gp-border);
    border-radius: 16px; padding: 40px 32px;
    position: relative; transition: all .35s;
}
.gp-pc:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow2); }
.gp-pc-featured { border-color: var(--gp-gold); border-width: 2px; box-shadow: 0 8px 48px rgba(200,168,75,.18); }
.gp-pc-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.gp-pc-icon { font-size: 32px; margin-bottom: 12px; }
.gp-pc-tier { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gp-muted); }
.gp-pc-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.gp-pc-desc { font-size: 13px; color: var(--gp-sub); margin-bottom: 20px; }
.gp-pc-price { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 400; color: var(--gp-text); line-height: 1; }
.gp-pc-price sup { font-size: 18px; color: var(--gp-gold); }
.gp-pc-price-old { font-size: 12px; color: var(--gp-muted); margin-bottom: 20px; margin-top: 4px; }
.gp-pc-divider { height: 1px; background: var(--gp-border); margin-bottom: 20px; }
.gp-pc-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.gp-pc-feat-yes { font-size: 13px; color: var(--gp-sub); display: flex; align-items: flex-start; gap: 8px; }
.gp-pc-feat-no  { font-size: 13px; color: var(--gp-muted); display: flex; align-items: flex-start; gap: 8px; opacity: .5; }
.gp-pc-feat-yes::first-letter { color: var(--gp-gold); font-weight: 700; }
.gp-pc-cta {
    display: block; text-align: center; padding: 13px; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    transition: all .3s; border: 1.5px solid var(--gp-border); color: var(--gp-text);
}
.gp-pc-featured .gp-pc-cta {
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(200,168,75,.35);
}
.gp-pc:not(.gp-pc-featured) .gp-pc-cta:hover { border-color: var(--gp-gold); color: var(--gp-gold); background: var(--gp-goldbg); }
.gp-price-note { text-align: center; font-size: 13px; color: var(--gp-muted); padding: 0 80px 60px; }

/* CTA Dark */
.gp-cta-dark {
    background: linear-gradient(135deg, var(--gp-text) 0%, #2d2820 100%);
    padding: 100px 80px; text-align: center; position: relative; overflow: hidden;
}
.gp-cta-dark::before {
    content: '';
    position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,168,75,.12) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.gp-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
    color: var(--gp-gold); background: rgba(200,168,75,.1); border: 1px solid rgba(200,168,75,.2);
    padding: 7px 18px; border-radius: 100px; margin-bottom: 32px;
}
.gp-cta-dark-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.15;
    color: #fff; margin-bottom: 20px;
}
.gp-cta-dark-h2 em { font-style: italic; color: var(--gp-gold); }
.gp-cta-dark-p { font-size: 15px; color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto 48px; line-height: 1.7; }
.gp-cta-dark-form {
    max-width: 520px; margin: 0 auto;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 36px;
}
.gp-cta-dark-form h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.gp-cta-dark-form-note { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.gp-cta-dark-fields { display: flex; flex-direction: column; gap: 12px; }
.gp-cta-dark-fields input,
.gp-cta-dark-fields select {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; color: #fff; outline: none;
    transition: border-color .3s; appearance: none;
}
.gp-cta-dark-fields input::placeholder { color: rgba(255,255,255,.35); }
.gp-cta-dark-fields input:focus,
.gp-cta-dark-fields select:focus { border-color: var(--gp-gold); }
.gp-cta-dark-btn {
    padding: 14px; border-radius: 8px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold2));
    color: #fff; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    transition: all .3s; box-shadow: 0 6px 24px rgba(200,168,75,.4);
}
.gp-cta-dark-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,168,75,.5); }
.gp-cta-guarantee {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,.4);
    margin-top: 32px;
}
.gp-cta-guarantee svg { width: 14px; height: 14px; stroke: var(--gp-gold); fill: none; stroke-width: 1.5; }

/* =========================================================================
   RESPONSIVE — NEW WIDGETS
   ========================================================================= */
@media (max-width: 1100px) {
    .gp-page-hero { padding: 100px 40px 60px; }
    .gp-features, .gp-faq, .gp-website-types, .gp-nha-khoa-why,
    .gp-portfolio, .gp-curriculum { padding: 72px 40px; }
    .gp-feat-grid { grid-template-columns: repeat(2,1fr); }
    .gp-portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .gp-tab-panel { grid-template-columns: 1fr; gap: 32px; }
    .gp-two-col { grid-template-columns: 1fr; gap: 40px; }
    .gp-cta-banner { margin: 0 40px 48px; padding: 40px; }
    .gp-course-hero { grid-template-columns: 1fr; }
    .gp-course-hero-right { display: none; }
    .gp-course-hero-left { padding: 140px 40px 80px; }
    .gp-curriculum-wrap { grid-template-columns: 1fr; }
    .gp-curr-nav { display: none; }
    .gp-course-pricing-cards { grid-template-columns: 1fr; max-width: 400px; padding: 0 40px 48px; }
    .gp-price-note { padding: 0 40px 40px; }
    .gp-cta-dark { padding: 72px 40px; }
}
@media (max-width: 640px) {
    .gp-page-hero { padding: 100px 24px 48px; }
    .gp-features, .gp-faq, .gp-website-types, .gp-nha-khoa-why,
    .gp-portfolio, .gp-curriculum { padding: 60px 24px; }
    .gp-feat-grid { grid-template-columns: 1fr; }
    .gp-portfolio-grid { grid-template-columns: 1fr; }
    .gp-faq-two-col { grid-template-columns: 1fr; }
    .gp-hero-btns { flex-direction: column; align-items: flex-start; }
    .gp-cta-banner { margin: 0 16px 40px; padding: 32px 24px; }
    .gp-course-pricing-cards { padding: 0 24px 40px; }
    .gp-cta-dark { padding: 60px 24px; }
}
