/* =============================================
   Gatherova Dashboard - signup.css
   Public signup / registration page styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&display=swap');

.gwpm_signup_page {
    font-family: 'Lato', sans-serif;
    background: #f0f0f1;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

#gwpm_signup_wrap {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    background: #f0f0f1;
    padding: 32px 16px;
}

.gwpm_signup_step { max-width: 960px; margin: 0 auto; }

/* ── HEADER ── */
.gwpm_signup_header { text-align: center; margin-bottom: 28px; }
.gwpm_signup_header .gwpm_portal_logo { justify-content: center; font-size: 20px; margin-bottom: 14px; }
.gwpm_signup_header h1 { font-size: 28px; font-weight: 700; color: #1d2327; margin: 0 0 8px; }
.gwpm_signup_header p { font-size: 14px; color: #8c8f94; margin: 0; }

/* ── PLAN CARDS ── */
.gwpm_plan_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.gwpm_plan_option {
    position: relative;
    background: #fff;
    border: 2px solid #dcdcde;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-align: center;
}
.gwpm_plan_option:hover { border-color: #F83600; }
.gwpm_plan_option.selected { border-color: #F83600; box-shadow: 0 0 0 3px rgba(34,113,177,0.12); }
.gwpm_plan_option_featured { border-color: #F83600; }

.gwpm_plan_option_check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: #F83600;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.gwpm_plan_option.selected .gwpm_plan_option_check { display: flex; }

.gwpm_plan_popular {
    display: inline-block;
    background: #F83600;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.gwpm_plan_option_label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8c8f94; margin-bottom: 6px; }
.gwpm_plan_option_price { font-size: 28px; font-weight: 700; color: #F83600; line-height: 1; }
.gwpm_plan_option_cycle { font-size: 12px; color: #8c8f94; margin-top: 4px; }
.gwpm_plan_option_note  { font-size: 11px; color: #8c8f94; margin-top: 6px; }
.gwpm_plan_saving { display: inline-block; background: #e6f4ea; color: #00692b; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-top: 8px; }

/* ── FEATURES LIST ── */
.gwpm_signup_features { margin-bottom: 20px; }
.gwpm_signup_feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #50575e; padding: 5px 0; }
.gwpm_signup_feature i { color: #00a32a; font-size: 16px; }

/* ── CONTINUE BUTTON ── */
.gwpm_signup_continue_btn { width: 100%; justify-content: center; font-size: 15px; padding: 12px; }

/* ── SIGNUP BOX ── */
.gwpm_signup_box {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 10px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 480px;
    margin: 0 auto;
}

.gwpm_signup_back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8c8f94;
    cursor: pointer;
    margin-bottom: 16px;
    transition: color 0.12s;
}
.gwpm_signup_back:hover { color: #F83600; }

/* ── ORDER SUMMARY ── */
.gwpm_signup_order_summary {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 18px;
}
.gwpm_order_row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #ececec; font-size: 13px; color: #50575e; }
.gwpm_order_row:last-child { border-bottom: none; }
.gwpm_order_row strong { color: #1d2327; }

/* ── PAYMENT METHOD BUTTONS ── */
.gwpm_payment_methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.gwpm_payment_method_btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #dcdcde;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
}
.gwpm_payment_method_btn:hover { border-color: #F83600; background: #f0f6fc; }
.gwpm_payment_method_btn i { font-size: 24px; color: #F83600; flex-shrink: 0; }
.gwpm_payment_method_btn span { font-size: 14px; font-weight: 700; color: #1d2327; display: block; }
.gwpm_payment_method_btn small { font-size: 11px; color: #8c8f94; display: block; }

/* ── TRUST INDICATORS ── */
.gwpm_signup_trust {
    text-align: center;
    font-size: 11px;
    color: #8c8f94;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.gwpm_signup_trust i { font-size: 13px; color: #00a32a; }

/* ── SUCCESS STATE ── */
.gwpm_signup_success {
    text-align: center;
    padding: 36px 32px;
}
.gwpm_signup_success i.las {
    font-size: 56px;
    color: #00a32a;
    display: block;
    margin-bottom: 14px;
}
.gwpm_signup_success h2 { font-size: 22px; color: #1d2327; margin: 0 0 10px; }
.gwpm_signup_success p  { font-size: 14px; color: #50575e; margin: 0 0 20px; }

/* ── BILLING TOGGLE ── */
.gwpm_billing_toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
}
.gwpm_billing_tab {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    border: 2px solid #d1d5db;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}
.gwpm_billing_tab:first-child { border-radius: 8px 0 0 8px; border-right: 1px solid #d1d5db; }
.gwpm_billing_tab:last-child  { border-radius: 0 8px 8px 0; border-left: 1px solid #d1d5db; }
.gwpm_billing_tab:hover { background: #f8fafc; color: #334155; }
.gwpm_billing_tab_active,
.gwpm_billing_tab.gwpm_billing_tab_active {
    background: #F83600 !important;
    color: #fff !important;
    border-color: #F83600 !important;
}
.gwpm_billing_save {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.gwpm_billing_tab_active .gwpm_billing_save {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

/* ── TIER CARDS ── */
.gwpm_tier_card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.gwpm_tier_card:hover {
    border-color: #F83600;
    box-shadow: 0 4px 20px rgba(248,54,0,0.1);
    transform: translateY(-2px);
}
.gwpm_tier_card_featured {
    border-color: #F83600;
    box-shadow: 0 4px 20px rgba(248,54,0,0.12);
}

/* ── TERMS ACCEPTANCE (signup) ── */
.gwpm_terms_acceptance { margin: 16px 0; border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; background: #f8fafc; }
#gwpm_signature_canvas { display: block; max-width: 100%; touch-action: none; }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 960px) {
    .gwpm_tier_grid { grid-template-columns: 1fr 1fr !important; max-width: 640px !important; }
    .gwpm_signup_step { max-width: 700px; }
}

/* Small tablet / large phone */
@media (max-width: 680px) {
    .gwpm_tier_grid { grid-template-columns: 1fr !important; max-width: 400px !important; }
    .gwpm_signup_step { max-width: 100%; padding: 0 8px; }
    .gwpm_billing_tab { padding: 10px 18px; font-size: 13px; }
    .gwpm_billing_save { font-size: 9px; padding: 2px 6px; }
    .gwpm_signup_header h1 { font-size: 22px; }
    .gwpm_signup_header p { font-size: 13px; }
}

/* Phone */
@media (max-width: 500px) {
    .gwpm_plan_grid { grid-template-columns: 1fr; }
    .gwpm_signup_box { padding: 22px 18px; max-width: 100%; }
    #gwpm_signup_wrap { padding: 16px 10px; }
    .gwpm_billing_toggle { flex-direction: column; align-items: center; gap: 8px; }
    .gwpm_billing_tab { width: 100%; max-width: 280px; border-radius: 8px !important; border: 2px solid #d1d5db !important; }
    .gwpm_tier_card { padding: 18px; }
    .gwpm_tier_features li { font-size: 11px; }
    .gwpm_terms_acceptance { padding: 12px; }
    #gwpm_signature_canvas { width: 100% !important; height: 120px !important; }
    .gwpm_signup_header h1 { font-size: 20px; }
}
