
    .planner-help-wa{position:fixed;right:24px;bottom:24px;z-index:90;width:54px;height:54px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.72);border-radius:50%;background:#25d366;color:#fff;box-shadow:0 10px 28px rgba(18,140,71,.28);font-size:27px;text-decoration:none;transition:.2s ease}.planner-help-wa:hover{background:#1fbd59;color:#fff;transform:translateY(-2px)}.planner-help-wa:focus-visible{outline:3px solid rgba(37,211,102,.3);outline-offset:3px}@media(max-width:768px){.planner-help-wa{right:16px;bottom:max(18px,env(safe-area-inset-bottom));width:50px;height:50px;font-size:24px}}@media print{.planner-help-wa{display:none!important}}
  

    :root {
      --gold: #D4AF37;
      --gold-light: #F5D060;
      --gold-dark: #A8881A;
      --gold-gradient: linear-gradient(135deg, #B8961E 0%, #D4AF37 40%, #F5D060 100%);
      --gold-glow: 0 8px 32px rgba(212,175,55,0.18);
      
      --bg-page: #F8FAFC;
      --bg-card: rgba(255, 255, 255, 0.85);
      --bg-input: #F1F5F9;
      
      --text-primary: #1E293B;
      --text-secondary: #475569;
      --text-muted: #94A3B8;
      
      --border: #E2E8F0;
      --border-focus: #D4AF37;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-page);
      color: var(--text-primary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      position: relative;
    }

    /* Ambient Glow Backgrounds */
    .ambient-glow-1 {
      position: absolute;
      top: -10%; left: -10%;
      width: 40vw; height: 40vw;
      background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(248,250,252,0) 70%);
      z-index: 0;
    }
    .ambient-glow-2 {
      position: absolute;
      bottom: -10%; right: -10%;
      width: 50vw; height: 50vw;
      background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, rgba(248,250,252,0) 70%);
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1280px;
      margin: auto;
      padding: 40px 30px;
      display: grid;
      grid-template-columns: 1.1fr 420px;
      gap: 70px;
      align-items: center;
    }
    
    /* =================== BENTO GRID (LEFT) =================== */
    .showcase {
      display: flex;
      flex-direction: column;
      gap: 35px;
    }
    .showcase-header h1 {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 15px;
      background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .showcase-header p {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    
    .bento-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .bento-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      backdrop-filter: blur(12px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    }
    .bento-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-focus);
      box-shadow: var(--gold-glow);
    }
    .bento-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(212,175,55,0.1);
      color: var(--gold-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }
    .bento-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }
    .bento-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* =================== LOGIN CARD (RIGHT) =================== */
    .login-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }
    .login-card {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
      position: relative;
    }
    .login-card::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    
    .logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    .logo-container img {
      width: 60px;
      margin-bottom: 15px;
    }
    .logo-container h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-primary);
    }
    .logo-container p {
      font-size: 15px;
      color: var(--text-secondary);
      margin-top: 6px;
    }

    /* Form Styles */
    .form-group {
      margin-bottom: 22px;
      position: relative;
    }
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }
    .input-wrapper {
      position: relative;
    }
    .input-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 16px;
      transition: color 0.3s;
    }
    .form-control {
      width: 100%;
      background: var(--bg-input);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 15px 18px 15px 48px;
      font-size: 15px;
      color: var(--text-primary);
      font-family: inherit;
      transition: all 0.3s;
    }
    .form-control:focus {
      outline: none;
      border-color: var(--gold);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    }
    .form-control:focus + .input-icon {
      color: var(--gold-dark);
    }
    
    .id-type-badge {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 6px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .id-type-badge.show { opacity: 1; }
    .id-type-badge.email { background: rgba(56,189,248,0.1); color: #0284C7; }
    .id-type-badge.code { background: rgba(212,175,55,0.15); color: var(--gold-dark); }

    .toggle-pass {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .toggle-pass:hover { color: var(--text-primary); }

    .btn-login {
      width: 100%;
      background: var(--gold-gradient);
      color: #000;
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
      margin-top: 15px;
    }
    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: var(--gold-glow);
    }
    .btn-login:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    .btn-login.success-state {
      background: #10B981;
      color: #fff;
    }

    .alert {
      display: none;
      padding: 12px 15px;
      border-radius: 8px;
      font-size: 13px;
      margin-bottom: 20px;
      align-items: center;
      gap: 10px;
    }
    .alert.show { display: flex; }
    .alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #B91C1C; }

    .btn-register-link {
      display: block;
      text-align: center;
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      color: var(--text-secondary);
      font-size: 15px;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    .btn-register-link span {
      color: var(--gold-dark);
      font-weight: 700;
    }
    .btn-register-link:hover {
      color: var(--text-primary);
    }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 992px) {
      .container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
      }
    }
    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
      }
      .login-wrapper {
        order: -1;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
      }
      .showcase-header {
        text-align: center;
      }
      .showcase-header h1 {
        font-size: 32px;
      }
      .login-card {
        padding: 35px 25px;
      }
    }
    @media (max-width: 576px) {
      .bento-grid {
        grid-template-columns: 1fr;
      }
      .showcase-header h1 {
        font-size: 28px;
      }
    }
  
    .login-guide {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }
    .guide-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 18px 22px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 25px -10px rgba(0,0,0,0.05);
      backdrop-filter: blur(20px);
    }
    .guide-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 4px;
      background: var(--gold-gradient);
      transition: width 0.3s;
    }
    .guide-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px -10px rgba(212,175,55,0.25);
      border-color: rgba(212,175,55,0.4);
    }
    .guide-item:hover::before {
      width: 6px;
    }
    
    .guide-item.new::before {
      background: linear-gradient(135deg, #0284C7, #38BDF8);
    }
    .guide-item.new:hover {
      box-shadow: 0 15px 35px -10px rgba(56,189,248,0.25);
      border-color: rgba(56,189,248,0.4);
    }

    .guide-icon-wrapper {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(212,175,55,0.1);
      color: var(--gold-dark);
      font-size: 20px;
      transition: all 0.4s;
    }
    .guide-item:hover .guide-icon-wrapper {
      background: var(--gold-gradient);
      color: #fff;
      transform: scale(1.1) rotate(5deg);
    }
    
    .guide-item.new .guide-icon-wrapper {
      background: rgba(56,189,248,0.1);
      color: #0284C7;
    }
    .guide-item.new:hover .guide-icon-wrapper {
      background: linear-gradient(135deg, #0284C7, #38BDF8);
      color: #fff;
      transform: scale(1.1) rotate(-5deg);
    }

    .guide-content {
      flex: 1;
    }
    .guide-content strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 4px;
    }
    .guide-content span {
      display: block;
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .guide-content a {
      color: #0284C7;
      text-decoration: none;
      font-weight: 800;
      transition: color 0.2s;
      position: relative;
    }
    .guide-content a::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -2px;
      left: 0;
      background-color: #0284C7;
      transform: scaleX(0);
      transform-origin: bottom right;
      transition: transform 0.3s ease-out;
    }
    .guide-content a:hover::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
    /* Form Styles */
    .form-group {
      margin-bottom: 22px;
      position: relative;
    }
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }
    .input-wrapper {
      position: relative;
    }
    .input-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 16px;
      transition: color 0.3s;
    }
    .form-control {
      width: 100%;
      background: var(--bg-input);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 15px 18px 15px 48px;
      font-size: 15px;
      color: var(--text-primary);
      font-family: inherit;
      transition: all 0.3s;
    }
    .form-control:focus {
      outline: none;
      border-color: var(--gold);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    }
    .form-control:focus + .input-icon {
      color: var(--gold-dark);
    }
    
    .id-type-badge {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 6px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .id-type-badge.show { opacity: 1; }
    .id-type-badge.email { background: rgba(56,189,248,0.1); color: #0284C7; }
    .id-type-badge.code { background: rgba(212,175,55,0.15); color: var(--gold-dark); }

    .toggle-pass {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .toggle-pass:hover { color: var(--text-primary); }

    .btn-login {
      width: 100%;
      background: var(--gold-gradient);
      color: #000;
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
      margin-top: 15px;
    }
    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: var(--gold-glow);
    }
    .btn-login:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    .btn-login.success-state {
      background: #10B981;
      color: #fff;
    }

    .alert {
      display: none;
      padding: 12px 15px;
      border-radius: 8px;
      font-size: 13px;
      margin-bottom: 20px;
      align-items: center;
      gap: 10px;
    }
    .alert.show { display: flex; }
    .alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #B91C1C; }

    .btn-register-link {
      display: block;
      text-align: center;
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      color: var(--text-secondary);
      font-size: 15px;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    .btn-register-link span {
      color: var(--gold-dark);
      font-weight: 700;
    }
    .btn-register-link:hover {
      color: var(--text-primary);
    }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 992px) {
      .container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
      }
    }
    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
      }
      .login-wrapper {
        order: -1;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
      }
      .showcase-header {
        text-align: center;
      }
      .showcase-header h1 {
        font-size: 32px;
      }
      .login-card {
        padding: 35px 25px;
      }
    }
    @media (max-width: 576px) {
      .bento-grid {
        grid-template-columns: 1fr;
      }
      .showcase-header h1 {
        font-size: 28px;
      }
    }
  
    .login-guide {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .guide-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.2);
      padding: 12px 14px;
      border-radius: 12px;
    }
    .guide-item.new {
      background: rgba(56,189,248,0.08);
      border-color: rgba(56,189,248,0.2);
    }
    .guide-item i {
      font-size: 18px;
      margin-top: 2px;
    }
    .guide-item:not(.new) i {
      color: var(--gold-dark);
    }
    .guide-item.new i {
      color: #0284C7;
    }
    .guide-content {
      flex: 1;
    }
    .guide-content strong {
      display: block;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 3px;
    }
    .guide-content span {
      display: block;
      font-size: 11.5px;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .guide-content a {
      color: #0284C7;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s;
    }
    .guide-content a:hover {
      text-decoration: underline;
    }
  
