/* ===========================
   PRICING PAGE — PREMIUM
=========================== */

.pricing-hero { background: var(--navy); padding: clamp(80px, 10vw, 130px) 0 clamp(64px, 8vw, 100px); }
.pricing-hero .section-label { margin-bottom: 20px; }
.pricing-hero-headline { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.pricing-hero-sub { color: rgba(255,255,255,0.6); font-size: clamp(1rem, 1.3vw, 1.15rem); margin-bottom: 48px; }
.pricing-controls { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.billing-toggle-wrap { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 10px 22px; border-radius: 50px; }
.toggle-opt { color: rgba(255,255,255,0.45); font-size: 0.9rem; font-weight: 500; transition: var(--transition); white-space: nowrap; }
.toggle-opt.toggle-active { color: var(--white); font-weight: 700; }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.2); border-radius: 24px; transition: var(--transition); }
.toggle-slider:before { position: absolute; content: ''; height: 18px; width: 18px; left: 3px; bottom: 3px; background: var(--white); border-radius: 50%; transition: var(--transition); }
input:checked + .toggle-slider { background: var(--orange); }
input:checked + .toggle-slider:before { transform: translateX(20px); }
.save-pill { background: var(--orange); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; vertical-align: middle; }
.currency-wrap { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 50px; }
.currency-icon { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.currency-wrap select { background: none; border: none; color: var(--white); font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer; outline: none; }
.currency-wrap select option { background: var(--navy); color: var(--white); }

/* PRICING CARDS */
.pricing-cards-section { background: var(--grey-light); padding: clamp(64px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); }
.pricing-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); align-items: stretch; }
.p-card { background: var(--white); border-radius: var(--radius-lg); display: flex; flex-direction: column; box-shadow: var(--shadow); transition: var(--transition); border: 2px solid transparent; overflow: hidden; }
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(247,147,26,0.2); }
.p-card-featured { background: var(--navy); border-color: var(--orange); box-shadow: 0 12px 48px rgba(18,40,60,0.25); }
.p-card-featured:hover { box-shadow: 0 20px 60px rgba(18,40,60,0.35); }
.p-popular { background: var(--orange); color: var(--white); text-align: center; font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; }
.p-card-top { padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2vw, 32px) clamp(20px, 2vw, 28px); display: flex; flex-direction: column; }
.p-plan-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.p-price-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.p-sym { font-size: clamp(1.1rem, 1.5vw, 1.4rem); font-weight: 700; color: var(--navy); line-height: 1; }
.p-card-featured .p-sym { color: var(--orange); }
.p-amt { font-size: clamp(2.4rem, 3.5vw, 3.6rem); font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.p-card-featured .p-amt { color: var(--white); }
.p-mo { font-size: 0.85rem; color: var(--grey-text); margin-left: 4px; }
.p-card-featured .p-mo { color: rgba(255,255,255,0.5); }
.p-annual-tag { font-size: 0.75rem; color: var(--orange); font-weight: 600; min-height: 20px; margin-bottom: 12px; display: none; background: rgba(247,147,26,0.08); padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(247,147,26,0.2); width: fit-content; }
.p-desc { font-size: clamp(0.82rem, 0.95vw, 0.9rem); color: var(--grey-text); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.p-card-featured .p-desc { color: rgba(255,255,255,0.55); }
.p-btn-outline { display: block; width: 100%; text-align: center; padding: 12px 16px; border: 2px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 0.875rem; border-radius: 10px; text-decoration: none; transition: var(--transition); }
.p-btn-outline:hover { background: var(--navy); color: var(--white); }
.p-btn-featured { display: block; width: 100%; text-align: center; padding: 12px 16px; background: var(--orange); color: var(--white); font-weight: 700; font-size: 0.875rem; border-radius: 10px; text-decoration: none; transition: var(--transition); border: 2px solid var(--orange); }
.p-btn-featured:hover { background: var(--orange-dark); box-shadow: 0 6px 24px rgba(247,147,26,0.4); transform: translateY(-1px); }
.p-note { text-align: center; font-size: 0.72rem; color: var(--grey-text); margin-top: 8px; }
.p-card-featured .p-note { color: rgba(255,255,255,0.35); }
.p-divider { height: 1px; background: var(--grey-mid); margin: 0 clamp(16px, 2vw, 28px); }
.p-card-featured .p-divider { background: rgba(255,255,255,0.1); }
.p-feats { list-style: none; padding: clamp(16px, 2vw, 24px) clamp(20px, 2vw, 28px) clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: clamp(8px, 1vw, 12px); }
.p-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: clamp(0.8rem, 0.9vw, 0.875rem); line-height: 1.4; }
.p-feats li.on { color: var(--black); }
.p-feats li.off { color: var(--grey-text); }
.p-feats li.on i { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 0.78rem; }
.p-feats li.off i { color: #d1d5db; flex-shrink: 0; margin-top: 2px; font-size: 0.78rem; }
.p-card-featured .p-feats li.on { color: rgba(255,255,255,0.9); }
.p-card-featured .p-feats li.off { color: rgba(255,255,255,0.28); }
.p-card-featured .p-feats li.off i { color: rgba(255,255,255,0.15); }

.pricing-footnote { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2vw, 28px); flex-wrap: wrap; margin-top: clamp(28px, 4vw, 48px); padding: clamp(16px, 2vw, 24px) clamp(24px, 3vw, 40px); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.footnote-item { display: flex; align-items: center; gap: 8px; font-size: clamp(0.82rem, 0.9vw, 0.9rem); font-weight: 600; color: var(--navy); }
.footnote-item i { color: var(--orange); }
.footnote-dot { width: 4px; height: 4px; background: var(--grey-mid); border-radius: 50%; flex-shrink: 0; }

/* COMPARISON TABLE */
.comparison-section { background: var(--white); padding: clamp(64px, 8vw, 120px) 0; }
.table-scroll-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--grey-mid); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: clamp(0.8rem, 0.9vw, 0.9rem); min-width: 680px; }
.comparison-table thead tr { background: var(--navy); }
.comparison-table thead th { padding: clamp(14px, 2vw, 22px) clamp(16px, 2vw, 24px); text-align: center; color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; position: sticky; top: 0; z-index: 10; }
.comparison-table thead th.col-feature { text-align: left; color: rgba(255,255,255,0.4); font-size: 0.72rem; }
.comparison-table thead th.col-featured { background: var(--orange); color: var(--white); }
.col-featured-label { display: block; font-size: 0.78rem; font-weight: 700; margin-bottom: 4px; }
.col-featured-badge { display: inline-block; background: rgba(255,255,255,0.25); color: var(--white); font-size: 0.62rem; padding: 2px 8px; border-radius: 50px; font-weight: 700; }
.comparison-table td { padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 24px); text-align: center; border-bottom: 1px solid var(--grey-mid); }
.comparison-table td.col-feature { text-align: left; font-weight: 500; color: var(--black); font-size: clamp(0.82rem, 0.9vw, 0.9rem); }
.comparison-table tbody tr:hover { background: rgba(247,147,26,0.03); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.cat-row td { background: var(--navy) !important; color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 10px clamp(16px, 2vw, 24px); text-align: left; }
.cat-row td i { color: var(--orange); margin-right: 8px; }
.col-featured { background: rgba(247,147,26,0.03); border-left: 2px solid rgba(247,147,26,0.25); border-right: 2px solid rgba(247,147,26,0.25); }
.tyes { color: var(--green); font-size: 1rem; }
.tno { color: #d1d5db; font-size: 0.85rem; }
.tv { font-weight: 700; color: var(--navy); font-size: 0.82rem; background: rgba(18,40,60,0.05); padding: 3px 10px; border-radius: 6px; }
.table-cta-row td { padding: clamp(16px, 2vw, 24px); border-bottom: none; background: var(--grey-light) !important; }
.btn-tcta { display: inline-block; padding: 10px 22px; border: 2px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 0.82rem; border-radius: 8px; text-decoration: none; transition: var(--transition); }
.btn-tcta:hover { background: var(--navy); color: var(--white); }
.btn-tcta-featured { display: inline-block; padding: 10px 22px; background: var(--orange); color: var(--white); font-weight: 700; font-size: 0.82rem; border-radius: 8px; text-decoration: none; transition: var(--transition); border: 2px solid var(--orange); }
.btn-tcta-featured:hover { background: var(--orange-dark); }

/* FAQ */
.faq-section { background: var(--grey-light); padding: clamp(64px, 8vw, 120px) 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(48px, 6vw, 100px); align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left .section-title { margin-bottom: 16px; }
.faq-left .section-sub { margin-bottom: 32px; font-size: clamp(0.9rem, 1.1vw, 1rem); }
.faq-contact-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.faq-contact-link:hover { text-decoration: underline; }
.faq-btc-note { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border-radius: 12px; padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px); border: 1px solid var(--grey-mid); }
.faq-btc-note i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.faq-btc-note span { font-size: clamp(0.82rem, 0.9vw, 0.9rem); color: var(--grey-text); line-height: 1.5; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-mid); transition: var(--transition); }
.faq-item:hover { border-color: rgba(247,147,26,0.3); }
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(247,147,26,0.1); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px); background: none; border: none; cursor: pointer; font-family: var(--font); font-size: clamp(0.88rem, 1vw, 1rem); font-weight: 700; color: var(--black); text-align: left; transition: var(--transition); gap: 16px; }
.faq-item.open .faq-q { color: var(--orange); }
.faq-icon { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 22px); color: var(--grey-text); font-size: clamp(0.875rem, 0.95vw, 0.95rem); line-height: 1.85; margin: 0; }

/* TRUST BAR */
.p-trust { background: var(--navy); padding: clamp(48px, 6vw, 80px) 0; }
.p-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.p-trust-item { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 20px); padding: clamp(16px, 2vw, 28px) clamp(24px, 3vw, 40px); border-right: 1px solid rgba(255,255,255,0.08); }
.p-trust-item:last-child { border-right: none; }
.p-trust-icon { width: clamp(40px, 3.5vw, 52px); height: clamp(40px, 3.5vw, 52px); background: rgba(247,147,26,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: clamp(1rem, 1.2vw, 1.2rem); color: var(--orange); flex-shrink: 0; }
.p-trust-text { display: flex; flex-direction: column; gap: 3px; }
.p-trust-text strong { color: var(--white); font-size: clamp(0.82rem, 0.9vw, 0.95rem); font-weight: 700; }
.p-trust-text span { color: rgba(255,255,255,0.45); font-size: clamp(0.72rem, 0.8vw, 0.8rem); }
.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* PRICING RESPONSIVE */
@media (max-width: 1280px) {
    .pricing-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (max-width: 1100px) {
    .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .p-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .p-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .p-trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .faq-inner { grid-template-columns: 1fr 1.5fr; gap: 48px; }
}
@media (max-width: 900px) {
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: static; }
}
@media (max-width: 768px) {
    .pricing-controls { flex-direction: column; align-items: flex-start; gap: 14px; }
    .pricing-cards-grid { grid-template-columns: 1fr; }
    .p-trust-grid { grid-template-columns: 1fr; }
    .p-trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .pricing-footnote { gap: 12px; }
    .footnote-dot { display: none; }
}
@media (max-width: 480px) {
    .billing-toggle-wrap { flex-wrap: wrap; justify-content: center; gap: 10px; }
}
/* FREE TRIAL BADGE */
.free-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247,147,26,0.12);
    border: 1px solid rgba(247,147,26,0.25);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 28px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    backdrop-filter: blur(4px);
}
.free-trial-badge i {
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .free-trial-badge {
        font-size: 0.72rem;
        padding: 8px 18px;
        text-align: center;
    }
}