/* ============================================
   Design B - "Fresh Minimal"
   Ultra-clean, teal/emerald accents, lots of whitespace
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle top gradient bar */
body::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

#planForm {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

/* Header */
.site-header {
    padding: 32px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo { height: 70px; width: auto; display: block; }

/* Hero */
.hero-section {
    padding: 56px 0 28px;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

/* User Toggle */
.user-toggle-section { padding: 28px 0 12px; }
.toggle-wrapper {
    display: flex;
    max-width: 360px;
    margin: 0 auto;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 3px;
}
.user-select-btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.user-select-btn:hover { color: #1a1a2e; }
.active-user-btn {
    background: #fff !important;
    color: #1a1a2e !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.faster-link {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin-top: 16px;
}
.faster-link a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}
.faster-link a:hover { text-decoration: underline; }

/* Plan Cards */
.plans-section { padding: 36px 0 16px; }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.plan-card,
.plan-box-act {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #f3f4f6;
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
    overflow: visible;
    padding: 0;
    width: 100%;
    display: block;
    outline: none;
    margin: 0;
    height: auto;
    min-height: auto;
    max-width: none;
}
.plan-box-act::before { display: none; }
.plan-card:hover,
.plan-box-act:hover {
    border-color: #d1fae5;
    box-shadow: 0 8px 30px rgba(16,185,129,0.08);
}

.plan-box-act-active,
.plan-card.plan-box-act-active {
    border-color: #10b981 !important;
    box-shadow: 0 8px 30px rgba(16,185,129,0.12) !important;
}

.plan-card-featured {
    border-color: #10b981;
}

/* Badges */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 2;
}
.badge-value {
    /* background: #fef3c7; */
    /* color: #b45309; */
    background: #ede9fe;
    color: #7c3aed
}
.badge-popular {
    background: #10b981;
    color: #fff;
}

/* Plan Inner */
.plan-inner,
.basic-plan, .plus-plan, .elite-plan {
    padding: 40px 28px 28px;
    margin-top: 0;
}
.plan-details { padding: 0; margin-top: 0; }

.plan-header { margin-bottom: 20px; }
.plan-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 12px;
}
.plan-box-act-basic .plan-icon { background: #fef3c7; color: #d97706; }
.plan-box-act-plus .plan-icon,
.plan-card-featured .plan-icon { background: #d1fae5; color: #059669; }
.plan-box-act-elite .plan-icon { background: #ede9fe; color: #7c3aed; }

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 2px;
}
.plan-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pricing */
.plan-pricing {
    text-align: center;
    margin-bottom: 16px;
    padding: 20px 0;
    /* background: #f9fafb; */
    border-radius: 12px;
    margin-left: -12px;
    margin-right: -12px;
}
.plan-price { margin: 0; }
.price-currency {
    font-size: 20px; font-weight: 700; color: #1a1a2e;
    vertical-align: top; line-height: 1; position: relative; top: 8px;
}
.price-val {
    font-size: 52px; font-weight: 800; color: #1a1a2e;
    line-height: 1; letter-spacing: -0.04em; display: inline;
}
.price-details {
    display: block; font-size: 13px; color: #9ca3af;
    font-weight: 500; margin-top: 4px;
}

/* Meta */
.plan-meta { min-height: 28px; text-align: center; margin-bottom: 8px; }
.save_text {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 6px;
    position: static; float: none; height: auto; line-height: 1.4; top: auto;
}
.bottom_text {
    display: block; font-size: 13px; color: #9ca3af;
    font-weight: 400; margin-top: 6px; text-align: center;
}

/* CTA */
.plan-action { margin-top: 8px; }
.plan-select-btn,
.actvie-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #6b7280;
    display: block;
    outline: none;
    margin: 0;
    line-height: 1;
    background-image: none;
    padding-right: 20px;
}
.actvie-btn:hover {
    border-color: #10b981 !important;
    color: #059669 !important;
    background: #ecfdf5 !important;
}

.plan-box-act-active .actvie-btn,
.plan-card-featured .actvie-btn {
    background: #10b981 !important;
    color: #fff !important;
    border: none !important;
}
.plan-box-act-active .actvie-btn:hover,
.plan-card-featured .actvie-btn:hover {
    background: #059669 !important;
}

/* Features */
.features-strip { padding: 48px 0 20px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    border: none;
    transition: background 0.2s;
}
.feature-item:hover { background: #f9fafb; }
.feature-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon-wrap svg { stroke: #10b981; }
.feature-item strong {
    display: block; font-size: 14px; font-weight: 600;
    color: #1a1a2e; line-height: 1.3;
}
.feature-item span {
    display: block; font-size: 12px; color: #9ca3af;
    font-weight: 400; line-height: 1.4; margin-top: 2px;
}

/* Legacy */
.experiment-uppercase, .page-heading, .head_txt, .plan-container { display: none !important; }
.most-popular, .hideondesktop, .basic-back-btn { display: none !important; }
.tracking-widest { display: none; }
.plan_card, .plan_card_1, .plan_card_2 { display: block; gap: 0; }
.plan-box-act-basic, .plan-box-act-plus, .plan-box-act-elite { display: block; border-radius: 16px; }
#new-user-btn, #exist-user-btn { float: none; }
#new-user-btn::before, #exist-user-btn::before { display: none; }

/* Responsive */
@media (max-width: 991px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 380px; gap: 16px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 36px; }
}
@media (max-width: 767px) {
    body::before { height: 3px; }
    .site-header { padding: 24px 0 0; }
    .site-logo { height: 30px; margin: 0 auto; }
    .hero-section { padding: 36px 0 20px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .toggle-wrapper { max-width: 300px; }
    .user-select-btn { padding: 10px 12px; font-size: 13px; }
    .plans-grid { max-width: 340px; gap: 14px; padding: 0 6px; }
    .plan-inner, .basic-plan, .plus-plan, .elite-plan { padding: 32px 22px 24px; }
    .price-val { font-size: 42px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 6px; }
    .plan-card:hover, .plan-box-act:hover { transform: none; box-shadow: none; }
}

/* Animation */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.plan-card { animation: slideUp 0.4s ease-out both; }
.plan-card:nth-child(1) { animation-delay: 0.05s; }
.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.15s; }
