/* ========================================
   Init Pricing Table — Templates
   UNIFIED: All templates use 3-column card grid
   NO responsive breakpoints — prevents export collapse
   ======================================== */

/* ---------- Design Studio ---------- */
.tpl-design-studio {
    background: linear-gradient(145deg, #0a0a0f, #12121a);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #fff;
}
.tpl-design-studio .pt-header { text-align: center; margin-bottom: 28px; padding-top: 8px; }
.tpl-design-studio .pt-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
    color: #fff;
}
.tpl-design-studio .pt-desc { color: #9ca3af; font-size: 13px; }
.tpl-design-studio .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tpl-design-studio .pt-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: visible;
}
.tpl-design-studio .pt-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}
.tpl-design-studio .pt-card.popular {
    background: linear-gradient(145deg, rgba(16,185,129,0.1), rgba(52,211,153,0.06));
    border-color: rgba(16,185,129,0.2);
    padding-top: 32px;
}
.tpl-design-studio .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: #000;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-design-studio .pt-plan-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.tpl-design-studio .pt-plan-desc { font-size: 10px; color: #6b7280; margin-bottom: 10px; }
.tpl-design-studio .pt-price {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-design-studio .pt-price .currency { font-size: 14px; font-weight: 600; }
.tpl-design-studio .pt-price .period { font-size: 11px; color: #6b7280; font-weight: 400; }
.tpl-design-studio .pt-features { list-style: none; margin-bottom: 14px; }
.tpl-design-studio .pt-features li {
    padding: 5px 0;
    font-size: 11px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tpl-design-studio .pt-features li .fa-check {
    color: var(--primary-light);
    font-size: 8px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.tpl-design-studio .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255,255,255,0.06);
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-design-studio .pt-card.popular .pt-tag {
    background: var(--gradient-green);
    color: #000;
    border: none;
    font-weight: 700;
}

/* ---------- SaaS Clean ---------- */
.tpl-saas-clean {
    background: #111114;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #f0f0f0;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-saas-clean .pt-header { text-align: center; margin-bottom: 28px; padding-top: 8px; }
.tpl-saas-clean .pt-title { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 5px; color: #fff; }
.tpl-saas-clean .pt-desc { color: #9ca3af; font-size: 13px; }
.tpl-saas-clean .pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 10px;
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-saas-clean .pt-card {
    background: #16161a;
    padding: 24px 20px;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s;
    min-width: 0;
    overflow: visible;
}
.tpl-saas-clean .pt-card:last-child { border-right: none; }
.tpl-saas-clean .pt-card.popular {
    background: #1a1a1f;
    box-shadow: inset 0 0 0 2px var(--primary);
    padding-top: 36px;
}
.tpl-saas-clean .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-saas-clean .pt-plan-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 8px;
}
.tpl-saas-clean .pt-price {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #fff;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-saas-clean .pt-price .currency { font-size: 13px; }
.tpl-saas-clean .pt-price .period { font-size: 12px; color: #6b7280; font-weight: 400; }
.tpl-saas-clean .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-saas-clean .pt-features li {
    padding: 7px 0;
    font-size: 11px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tpl-saas-clean .pt-features li .fa-check { color: var(--primary); font-size: 9px; flex-shrink: 0; }
.tpl-saas-clean .pt-features li.disabled { color: #4b5563; text-decoration: line-through; }
.tpl-saas-clean .pt-features li.disabled .fa-check,
.tpl-saas-clean .pt-features li.disabled .fa-minus { color: #374151; }
.tpl-saas-clean .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 8px;
    border-radius: 7px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.04);
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-saas-clean .pt-card.popular .pt-tag { background: var(--primary); color: #000; border: none; font-weight: 700; }

/* ---------- Photography ---------- */
.tpl-photography {
    background: linear-gradient(180deg, #141210, #1a1815);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #e8e2d9;
    font-family: 'Playfair Display', Georgia, serif;
    border: 1px solid rgba(255,255,255,0.04);
}
.tpl-photography .pt-header { text-align: center; margin-bottom: 28px; padding-top: 8px; }
.tpl-photography .pt-title { font-size: 30px; font-weight: 700; margin-bottom: 5px; color: #e8e2d9; letter-spacing: -0.5px; }
.tpl-photography .pt-desc { color: #8c7e6a; font-size: 13px; font-family: 'Inter', sans-serif; }
.tpl-photography .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tpl-photography .pt-card {
    background: #1e1c18;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.03);
    min-width: 0;
    overflow: visible;
}
.tpl-photography .pt-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.tpl-photography .pt-card.popular {
    border: 2px solid #c9a96e;
    padding-top: 32px;
}
.tpl-photography .pt-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1c18;
    border-radius: 50%;
    border: 2px solid #c9a96e;
    color: #c9a96e;
    font-size: 0;
    z-index: 10;
}
.tpl-photography .pt-badge::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    display: block;
}
.tpl-photography .pt-plan-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; color: #e8e2d9; }
.tpl-photography .pt-plan-desc { font-size: 10px; color: #8c7e6a; font-family: 'Inter', sans-serif; margin-bottom: 14px; }
.tpl-photography .pt-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: #e8e2d9;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-photography .pt-price .currency { font-size: 16px; color: #8c7e6a; }
.tpl-photography .pt-price .period { font-size: 12px; color: #8c7e6a; font-weight: 400; font-family: 'Inter', sans-serif; }
.tpl-photography .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-photography .pt-features li {
    padding: 7px 0;
    font-size: 12px;
    color: #b8b0a4;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-family: 'Inter', sans-serif;
}
.tpl-photography .pt-features li .fa-circle { font-size: 4px; color: #c9a96e; flex-shrink: 0; }
.tpl-photography .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #b8b0a4;
    border: 1.5px solid rgba(255,255,255,0.1);
    letter-spacing: 0.3px;
}
.tpl-photography .pt-card.popular .pt-tag { background: #c9a96e; color: #1e1c18; border: none; font-weight: 700; }

/* ---------- Freelance — HORIZONTAL CARD GRID ---------- */
.tpl-freelance {
    background: #111114;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #e0e0ff;
    border: 1px solid rgba(255,255,255,0.04);
}
.tpl-freelance .pt-header { text-align: center; margin-bottom: 26px; padding-top: 8px; }
.tpl-freelance .pt-title { font-size: 26px; font-weight: 800; margin-bottom: 5px; color: #fff; letter-spacing: -0.5px; }
.tpl-freelance .pt-desc { color: var(--primary-light); font-size: 13px; font-weight: 500; }
.tpl-freelance .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tpl-freelance .pt-card {
    background: #16161a;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s;
    min-width: 0;
    overflow: visible;
}
.tpl-freelance .pt-card:hover { border-color: rgba(16,185,129,0.15); transform: translateY(-3px); }
.tpl-freelance .pt-card.popular {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(52,211,153,0.04));
    border-color: rgba(16,185,129,0.2);
    padding-top: 32px;
}
.tpl-freelance .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-freelance .pt-plan-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.tpl-freelance .pt-plan-desc { font-size: 10px; color: #6b7280; margin-bottom: 10px; }
.tpl-freelance .pt-price {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-freelance .pt-price .currency { font-size: 13px; }
.tpl-freelance .pt-price .period { font-size: 11px; color: #6b7280; font-weight: 500; }
.tpl-freelance .pt-features { list-style: none; margin-bottom: 14px; }
.tpl-freelance .pt-features li {
    padding: 5px 0;
    font-size: 11px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tpl-freelance .pt-features li .fa-check {
    color: var(--primary-light);
    font-size: 8px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.tpl-freelance .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-freelance .pt-card.popular .pt-tag { background: var(--primary); color: #000; border: none; font-weight: 700; }

/* ---------- Agency Bold ---------- */
.tpl-agency-bold {
    background: #000;
    border-radius: 0;
    padding: 36px 32px;
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #fff;
    border: 3px solid #fff;
    outline: 3px solid #000;
}
.tpl-agency-bold .pt-header {
    margin-bottom: 28px;
    border-bottom: 2px solid #fff;
    padding-bottom: 14px;
    padding-top: 8px;
}
.tpl-agency-bold .pt-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-bottom: 4px;
    line-height: 1;
}
.tpl-agency-bold .pt-desc { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 2px; }
.tpl-agency-bold .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #fff; }
.tpl-agency-bold .pt-card { background: #000; padding: 24px; position: relative; transition: all 0.2s; min-width: 0; overflow: visible; }
.tpl-agency-bold .pt-card.popular { background: #fff; color: #000; padding-top: 36px; }
.tpl-agency-bold .pt-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    padding: 3px 10px;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-agency-bold .pt-plan-name { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.tpl-agency-bold .pt-price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-agency-bold .pt-price .currency { font-size: 16px; }
.tpl-agency-bold .pt-price .period { font-size: 12px; opacity: 0.6; font-weight: 400; }
.tpl-agency-bold .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-agency-bold .pt-features li {
    padding: 6px 0;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tpl-agency-bold .pt-card.popular .pt-features li { border-bottom-color: rgba(0,0,0,0.1); }
.tpl-agency-bold .pt-features li .fa-arrow-right { font-size: 8px; flex-shrink: 0; }
.tpl-agency-bold .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.tpl-agency-bold .pt-card.popular .pt-tag { background: #000; color: #fff; border-color: #000; }

/* ---------- Comparison Table ---------- */
.tpl-comparison {
    background: #111114;
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 840px;
    min-width: 560px;
    color: #f0f0f0;
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
}
.tpl-comparison .pt-header { text-align: center; margin-bottom: 24px; padding-top: 8px; }
.tpl-comparison .pt-title { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; color: #fff; }
.tpl-comparison .pt-desc { color: #9ca3af; font-size: 12px; }
.tpl-comparison .pt-table-wrap { overflow-x: auto; overflow-y: visible; padding-top: 16px; }
.tpl-comparison .pt-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.tpl-comparison .pt-table th, .tpl-comparison .pt-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 11px;
}
.tpl-comparison .pt-table th {
    font-weight: 600;
    color: #6b7280;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #16161a;
    border-bottom: 2px solid rgba(255,255,255,0.06);
}
.tpl-comparison .pt-table th:first-child { border-radius: 6px 0 0 0; width: 30%; }
.tpl-comparison .pt-table th:last-child { border-radius: 0 6px 0 0; }
.tpl-comparison .pt-table td:first-child { font-weight: 500; color: #f0f0f0; }
.tpl-comparison .pt-table tr:hover td { background: #16161a; }
.tpl-comparison .pt-table .feature-name { display: flex; align-items: center; gap: 6px; }
.tpl-comparison .pt-table .check-yes { color: var(--primary); font-size: 12px; }
.tpl-comparison .pt-table .check-no { color: #374151; font-size: 12px; }
.tpl-comparison .pt-table .plan-header-cell { text-align: center; padding: 14px; vertical-align: bottom; position: relative; padding-top: 24px; }
.tpl-comparison .pt-table .plan-header-cell .plan-name { font-size: 14px; font-weight: 700; color: #fff; text-transform: none; letter-spacing: 0; margin-bottom: 2px; }
.tpl-comparison .pt-table .plan-header-cell .plan-desc { font-size: 10px; color: #6b7280; font-weight: 400; text-transform: none; letter-spacing: 0; }
.tpl-comparison .pt-table .plan-header-cell .plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
}
.tpl-comparison .pt-table .plan-header-cell .plan-price .period { font-size: 11px; color: #6b7280; font-weight: 400; }
.tpl-comparison .pt-table .popular-col {
    background: linear-gradient(180deg, rgba(16,185,129,0.05), transparent);
    box-shadow: inset 0 0 0 2px var(--primary);
    position: relative;
}
.tpl-comparison .pt-table .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-comparison .pt-table .popular-col .plan-name { color: var(--primary-light); }
.tpl-comparison .pt-table .cta-row td { border-bottom: none; padding-top: 14px; text-align: center; }
.tpl-comparison .pt-table .cta-row .pt-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.04);
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.06);
}
.tpl-comparison .pt-table .cta-row .popular-col .pt-tag { background: var(--primary); color: #000; border: none; font-weight: 700; }
.tpl-comparison .pt-table .cta-row td:first-child { background: transparent; }

/* ========================================
   NEW TEMPLATES — Creative & Modern
   ======================================== */

/* ---------- Glass Morphism ---------- */
.tpl-glass {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 820px;
    min-width: 560px;
    color: #fff;
    position: relative;
    overflow: visible;
}
.tpl-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.08), transparent 60%);
    pointer-events: none;
}
.tpl-glass .pt-header { text-align: center; margin-bottom: 32px; position: relative; z-index: 1; padding-top: 8px; }
.tpl-glass .pt-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: #fff;
}
.tpl-glass .pt-desc { color: #94a3b8; font-size: 13px; }
.tpl-glass .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 1; }
.tpl-glass .pt-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    overflow: visible;
}
.tpl-glass .pt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.tpl-glass .pt-card:hover::before { opacity: 1; }
.tpl-glass .pt-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}
.tpl-glass .pt-card.popular {
    background: rgba(255,255,255,0.06);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 0 40px rgba(99,102,241,0.1), inset 0 0 0 1px rgba(99,102,241,0.2);
    padding-top: 36px;
}
.tpl-glass .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-ocean);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-glass .pt-plan-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.tpl-glass .pt-plan-desc { font-size: 11px; color: #64748b; margin-bottom: 14px; }
.tpl-glass .pt-price {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-glass .pt-price .currency { font-size: 14px; font-weight: 600; opacity: 0.7; }
.tpl-glass .pt-price .period { font-size: 12px; color: #64748b; font-weight: 400; }
.tpl-glass .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-glass .pt-features li {
    padding: 6px 0;
    font-size: 12px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tpl-glass .pt-features li .fa-check {
    color: #818cf8;
    font-size: 9px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,0.15);
    border-radius: 50%;
    flex-shrink: 0;
}
.tpl-glass .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.tpl-glass .pt-card:hover .pt-tag { background: rgba(255,255,255,0.08); }
.tpl-glass .pt-card.popular .pt-tag {
    background: var(--gradient-ocean);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

/* ---------- Neon Cyber ---------- */
.tpl-neon {
    background: #050505;
    border-radius: 0;
    padding: 40px 36px;
    width: 100%;
    max-width: 820px;
    min-width: 560px;
    color: #e0e0e0;
    border: 1px solid rgba(0,255,136,0.1);
    position: relative;
    overflow: visible;
}
.tpl-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,255,136,0.03) 2px, rgba(0,255,136,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(217,70,239,0.03) 2px, rgba(217,70,239,0.03) 4px);
    pointer-events: none;
}
.tpl-neon .pt-header { text-align: center; margin-bottom: 32px; position: relative; z-index: 1; padding-top: 8px; }
.tpl-neon .pt-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,255,136,0.3), 0 0 40px rgba(217,70,239,0.2);
}
.tpl-neon .pt-desc { color: #00ff88; font-size: 13px; font-family: 'Space Grotesk', monospace; letter-spacing: 1px; opacity: 0.8; }
.tpl-neon .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.tpl-neon .pt-card {
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(0,255,136,0.15);
    border-radius: 4px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: visible;
}
.tpl-neon .pt-card:hover {
    border-color: rgba(0,255,136,0.4);
    box-shadow: 0 0 20px rgba(0,255,136,0.1), inset 0 0 20px rgba(0,255,136,0.05);
    transform: translateY(-2px);
}
.tpl-neon .pt-card.popular {
    border-color: rgba(217,70,239,0.4);
    background: rgba(217,70,239,0.05);
    box-shadow: 0 0 30px rgba(217,70,239,0.1), inset 0 0 30px rgba(217,70,239,0.05);
    padding-top: 36px;
}
.tpl-neon .pt-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--gradient-cyber);
    color: #000;
    font-size: 8px;
    font-weight: 900;
    padding: 3px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
    z-index: 10;
}
.tpl-neon .pt-plan-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    color: #00ff88;
    font-family: 'Space Grotesk', monospace;
}
.tpl-neon .pt-plan-desc { font-size: 11px; color: #666; margin-bottom: 14px; font-family: 'Space Grotesk', monospace; }
.tpl-neon .pt-price {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: #fff;
    flex-wrap: wrap;
    word-break: break-all;
    font-family: 'Space Grotesk', monospace;
}
.tpl-neon .pt-price .currency { font-size: 14px; color: #00ff88; }
.tpl-neon .pt-price .period { font-size: 11px; color: #666; font-weight: 400; }
.tpl-neon .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-neon .pt-features li {
    padding: 6px 0;
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(0,255,136,0.05);
    font-family: 'Space Grotesk', monospace;
}
.tpl-neon .pt-features li .fa-check { color: #00ff88; font-size: 9px; flex-shrink: 0; text-shadow: 0 0 5px rgba(0,255,136,0.5); }
.tpl-neon .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 2px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    color: #00ff88;
    border: 1px solid rgba(0,255,136,0.2);
    font-family: 'Space Grotesk', monospace;
    transition: all 0.3s;
    cursor: default;
}
.tpl-neon .pt-card:hover .pt-tag { background: rgba(0,255,136,0.05); }
.tpl-neon .pt-card.popular .pt-tag {
    background: var(--gradient-cyber);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(217,70,239,0.3);
}

/* ---------- Bento Grid ---------- */
.tpl-bento {
    background: #fafafa;
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 840px;
    min-width: 560px;
    color: #111;
    position: relative;
    overflow: visible;
}
.tpl-bento .pt-header { text-align: center; margin-bottom: 32px; padding-top: 8px; }
.tpl-bento .pt-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; color: #111; }
.tpl-bento .pt-desc { color: #666; font-size: 14px; }
.tpl-bento .pt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
}
.tpl-bento .pt-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    overflow: visible;
}
.tpl-bento .pt-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #ddd;
}
.tpl-bento .pt-card.popular {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    border-color: transparent;
    grid-row: span 1;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    padding-top: 36px;
}
.tpl-bento .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}
.tpl-bento .pt-plan-name { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.tpl-bento .pt-card.popular .pt-plan-name { color: #fff; }
.tpl-bento .pt-plan-desc { font-size: 11px; color: #999; margin-bottom: 14px; }
.tpl-bento .pt-card.popular .pt-plan-desc { color: #aaa; }
.tpl-bento .pt-price {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-bento .pt-price .currency { font-size: 13px; font-weight: 600; color: #666; }
.tpl-bento .pt-price .period { font-size: 12px; color: #999; font-weight: 400; }
.tpl-bento .pt-card.popular .pt-price .currency,
.tpl-bento .pt-card.popular .pt-price .period { color: #aaa; }
.tpl-bento .pt-features { list-style: none; margin-bottom: 18px; }
.tpl-bento .pt-features li {
    padding: 6px 0;
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.tpl-bento .pt-card.popular .pt-features li { color: #ddd; border-bottom-color: rgba(255,255,255,0.06); }
.tpl-bento .pt-features li .fa-check {
    color: #10b981;
    font-size: 9px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.tpl-bento .pt-card.popular .pt-features li .fa-check { background: rgba(255,255,255,0.1); color: #fff; }
.tpl-bento .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
}
.tpl-bento .pt-card:hover .pt-tag { background: #eee; }
.tpl-bento .pt-card.popular .pt-tag {
    background: #fff;
    color: #111;
    border: none;
    font-weight: 700;
}

/* ---------- Minimal 3D ---------- */
.tpl-minimal-3d {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 780px;
    min-width: 560px;
    color: #1e293b;
    perspective: 1000px;
    overflow: visible;
}
.tpl-minimal-3d .pt-header { text-align: center; margin-bottom: 32px; padding-top: 8px; }
.tpl-minimal-3d .pt-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; color: #0f172a; }
.tpl-minimal-3d .pt-desc { color: #64748b; font-size: 14px; }
.tpl-minimal-3d .pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tpl-minimal-3d .pt-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 0;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transform-style: preserve-3d;
    overflow: visible;
}
.tpl-minimal-3d .pt-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(99,102,241,0.1);
}
.tpl-minimal-3d .pt-card.popular {
    background: linear-gradient(145deg, #fff, #f0f9ff);
    border-color: rgba(99,102,241,0.2);
    box-shadow: 0 20px 40px -10px rgba(99,102,241,0.15);
    transform: translateY(-4px);
    padding-top: 40px;
}
.tpl-minimal-3d .pt-card.popular:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 60px -12px rgba(99,102,241,0.2), 0 0 0 1px rgba(99,102,241,0.2);
}
.tpl-minimal-3d .pt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-ocean);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
    z-index: 10;
}
.tpl-minimal-3d .pt-plan-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; color: #0f172a; }
.tpl-minimal-3d .pt-plan-desc { font-size: 11px; color: #94a3b8; margin-bottom: 16px; }
.tpl-minimal-3d .pt-price {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: #0f172a;
    flex-wrap: wrap;
    word-break: break-all;
}
.tpl-minimal-3d .pt-price .currency { font-size: 14px; font-weight: 600; color: #64748b; }
.tpl-minimal-3d .pt-price .period { font-size: 12px; color: #94a3b8; font-weight: 400; }
.tpl-minimal-3d .pt-features { list-style: none; margin-bottom: 20px; }
.tpl-minimal-3d .pt-features li {
    padding: 7px 0;
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.tpl-minimal-3d .pt-features li .fa-check {
    color: #6366f1;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.tpl-minimal-3d .pt-tag {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}
.tpl-minimal-3d .pt-card:hover .pt-tag { background: #e2e8f0; }
.tpl-minimal-3d .pt-card.popular .pt-tag {
    background: var(--gradient-ocean);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99,102,241,0.25);
}
